最近在学习微信小程序开发时,遇到以下几点特别特别容易犯错的地方,现在总结给大家
1.关于wx.chooseImage不能使用的问题
现在weixin官方已经停止维护wx.choose.Image组件了,现在一般都是使用的wx.choose.Media这个API接口,而这个API回调的文件临时路径的地址也发生的变化,现在如果想要打印出地址,可以使用如下的代码
console.log(res.tempFiles[0].tempFilePath)
2.关于“TypeError: Cannot read property 'cloudFile' of undefined”的错误原因
如果你是按照微信官方文档写的话,那么你的回调函数是如下格式:文章来源:https://www.toymoban.com/news/detail-580585.html
success(res) {
console.log(res.tempFiles.tempFilePath)
console.log(res.tempFiles.size)
}
但是这样就会报以上错误,正确的写法应该是:文章来源地址https://www.toymoban.com/news/detail-580585.html
success:(res)=>{
console.log(res.tempFiles[0].tempFilePath)
console.log(res.tempFiles[0].size)
}
到了这里,关于微信小程序wx.chooseMedia的坑,含“TypeError: Cannot read property ‘cloudFile‘ of undefined”错误原因的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!