请求视频地址iOS真机返回:fail response data convert to UTF8?
模拟器正常,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 } } }) } |
