请求视频地址iOS真机返回:fail response data convert to UTF8?
发布于 7 年前 作者 jintao 2134 次浏览 来自 官方Issues

模拟器正常,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
        }
      }
    })
  }
1 回复

麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

回到顶部