- wx.requestMidasPayment回调出错errCode 1016
wx.requestMidasPayment({ mode : "game", env : inst.midasPayEnv, offerId:"xxxxxxx", currencyType : "CNY", platform: "android", buyQuantity : buy_quantity, zoneId : product_id, success:payRes=>{ console.log("requestMidasPayment----success---:",payRes); cb(true); }, fail:payRes=>{ console.log("requestMidasPayment----fail---:",payRes); cb(false); this.showModal("充值失败,错误:",payRes); }昨天掉用的时候还可以。刚测报错errMsg:"requestMidasPayment:fail 系统繁忙,请稍后再试",errCode:1016 出错微信号 hanwuji7712 沙箱环境 出错时间 15:32
2019-11-14 - 使用wx.getUserInteractiveStorage 获取互动型托管数据出错
先在开放域中 let opid = this._openId; wx.modifyFriendInteractiveStorage({ key: '1', opNum: 1, operation: 'add', toUser: opid, success:res=>{ console.log("modifyFriendInteractiveStorage---success",res); }, fail:res=>{ console.log("fail----res:",res); } }); 显示成功,然后在主域调用 wx.getUserInteractiveStorage({ keyList: ["1"], success:res=>{ console.log("getUserInteractiveStorage--success:",res); }, fail:res=>{ console.log("getUserInteractiveStorage--fail:",res); } })提示出错 errMsg: "getUserInteractiveStorage:fail 系统错误,错误码:-1,system apperror"
2019-11-11 - 小游戏中播放视频卡顿
- 当前 Bug 的表现(可附上截图) 开始播放视频时,有几率画面卡住几秒,只有声音,几秒后恢复 问题型号手机 安卓型号: 魅族MX6(安卓版本 7.1.1) HUAWEI Mate9(Android 8.0.0) - 预期表现 视频流畅 - 复现路径 视频地址https://cdn.11h5.com/roll2/mini/test_video/test.mp4 - 提供一个最简复现 Demo 调用接口的代码 let src = 'https://cdn.11h5.com/roll2/mini/test_video/test.mp4'; let info = wx.getSystemInfoSync(); let video = wx.createVideo({ x: 0, y: 0, width: info.windowWidth, height: info.windowHeight, autoplay: false, controls: false, showCenterPlayBtn: false, enableProgressGesture: false, src: src, }); video.play(); video.onWaiting(()=>{ console.log("onWaiting"); }); video.onPlay(()=>{ console.log("开始播放!"); }); video.onError((msg)=>{ console.log("出错了!",msg); });
2019-02-26