模拟器正常,Android真机正常,提前判断视频是否有效,代码如下。
judgeVideoVaild (videoURL) { var that = this wx.request({ url: videoURL, method: 'GET' , success: res => { console.log(res) if (res.statusCode === 200) { that.videoURLValid = true } else { that.videoURLValid = false } } }) } |
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)