- 微信升级到7.0.13后,iOS播放只有音频,视频为黑屏,视频格式为m3u8,请问怎么办?
同样一段视频,之前可以正常使用,升级到7.0.13后,播放只有音频,视频为黑屏,视频格式为m3u8,同时用Android的最新微信版本(7.0.15)测试,正常播放。 代码片段:https://developers.weixin.qq.com/s/KIxEydmE76iR
2020-06-23 - iOS升级到7.0.13后video组件播放只有音频,视频为黑屏?
同样一段视频,之前可以正常使用,升级到7.0.13后,播放只有音频,视频为黑屏,视频格式为m3u8,同时用Android的最新微信版本(7.0.15)测试,正常播放
2020-06-18 - 请问我们是教育行业,为什么没有长期订阅的模板?
这是我的服务类别 [图片] 这是我添加模板时的页面 [图片]
2020-04-26 - wx.chooseVideo这个接口的maxDuration配置无效
- 当前 Bug 的表现(可附上截图) - 预期表现 - 复现路径 - 提供一个最简复现 Demo maxDuration我配置了60,但是为什么拍摄时显示最长是10分钟,我调整为6,也是10分钟,是不是小程序写死了。 [图片]
2019-04-18 - openSetting接口报错
在wxml页面使用以下的定位授权,点击按钮后,直接报以下错误,请问是为什么? <button class="locationBtn" open-type="openSetting" hidden='{{openSetting}}' bindopensetting="getWxLocation">点击获取位置信息</button> VM3154:1 appServiceSDKScriptError Cannot read property 'mode' of undefined;at api onAppEnterBackground callback function TypeError: Cannot read property 'mode' of undefined at Bt.<anonymous> (http://127.0.0.1:49560/appservice/__dev__/WAService.js:1:525987) at Bt.emit (http://127.0.0.1:49560/appservice/__dev__/WAService.js:1:305615) at Object.emit (http://127.0.0.1:49560/appservice/__dev__/WAService.js:1:324480) at Bt.<anonymous> (http://127.0.0.1:49560/appservice/__dev__/WAService.js:1:330528) at Bt.emit (http://127.0.0.1:49560/appservice/__dev__/WAService.js:1:305657) at Object.emit (http://127.0.0.1:49560/appservice/__dev__/WAService.js:1:324480) at http://127.0.0.1:49560/appservice/__dev__/WAService.js:1:325658 at http://127.0.0.1:49560/appservice/__dev__/WAService.js:1:262652 at e (http://127.0.0.1:49560/appservice/appservice?t=1547536492677:1205:2640) at n.registerCallback.t (http://127.0.0.1:49560/appservice/appservice?t=1547536492677:1205:2903)
2019-01-15 - 请问当用户在第一次拒绝了位置授权后,就不能在fail中继续调用了吗
用户第一次如果拒绝位置,但位置又是必须要授权的,为此在提交时会再次调用原先的获取位置方法,此时wx.authorize返回为fail,所以在fail中增加了 wx.openSetting的方法,但是没有用,请问是不是写错了,还是微信强制不允许。 if (res.authSetting['scope.userLocation'] != true) { wx.authorize({ scope: 'scope.userLocation', success() { console.log('调用授权success') that.getWxLocation(); }, fail: function (res) { console.log('调用授权fail') wx.openSetting({ success: (res) => { if (res.authSetting['scope.userLocation'] = true) { that.getWxLocation(); } } }) } }) }
2019-01-15 - 怎么才能够清楚canvas的上下文
我用context = wx.createCanvasContext('canvas');定义以后,并且使用var drawActions = wx.getStorageSync("drawActions");做缓存,然后通过以下方式绘图 var actions = context.getActions(); wx.drawCanvas({ canvasId: 'canvas', actions: actions, reserve: true }); drawActions.push(actions); 在绘图的过程中,我会缓存actions,便于把这个值提交给后台,用于后期的展示,但是当我清空过一次画布后,再次画的时候,虽然画布上没有显示,但是在缓存里面是连续增加的,虽然这个缓存在清除画布的,会把drawActions这个缓存清掉,但是在继续画的时候,会接着画布的上下文存储,以至于提交的时候是所有包括清空画布前的内容,请问这个怎么破。
2018-12-29 - 小程序莫名其妙的报错误
我调用后台接口,返回了数据,但是小程序确报了以下错误,明明我的返回值中有data呀,截图及代码如下: [图片] [图片]
2018-12-26 - 小程序的版本管理中能否增加一个历史版本的列表
其实只要历史版本的列表即可,回退功能还是目前一样即可,这样可以记录一下自己这个小程序的发版情况。
2018-12-26 - 请问我在微信开发中监控到这个数据,怎么定位是哪个页面
null is not an object (evaluating 'this.data');at api request success callback function success@https://usr/app-service.js:46:1517 https://lib/WAService.js:1:539447 https://lib/WAService.js:1:297295 https://lib/WAService.js:1:101820 _e@https://lib/WAService.js:1:254565 https://lib/WAService.js:1:385139 emit@https://lib/WAService.js:1:289867 di@https://lib/WAService.js:1:385649 https://lib/WAService.js:1:386286 https://lib/WAService.js:1:250369 S@https://lib/WAService.js:1:1762
2018-12-21