var msgFileID = 'cloud://kong-239266.6b6f-kong-239266/msg.txt'
wx.cloud.getTempFileURL({
fileList: [{
fileID: msgFileID
}],
success: function (res1) {
console.log(res1)
wx.request({
url: res1.fileList[loop].tempFileURL,
method: 'GET',
success: function (res2) {
that.showSearchResult(res2.data, that)
},
fail: function (res2) {
that.showSearchResult('Not Found'), that)
}
})
},
fail: function (res1) {
console.log('res1: ', res1)
that.showSearchResult('Not Found'), that)
}
})
这个代码在发布后,只有自己的微信能用,其他微信帐号就是一直阻塞。
请大家帮忙看一下,是什么原因。
request合法域名已经添加了getTempFileURL返回的URL
https://6b6f-kong-239266-1256492407.tcb.qcloud.la
微信小程序开发问题解答
微信小程序开发者回答:
建议调试一下看看报错信息是什么:https://developers.weixin.qq.com/miniprogram/dev/api/wx.setEnableDebug.html
本文网址:http://www.91bianli.com/weixinxiaochengxu/13072.html