最近在學(xué)習(xí)微信小程序開(kāi)發(fā)時(shí),遇到以下幾點(diǎn)特別特別容易犯錯(cuò)的地方,現(xiàn)在總結(jié)給大家
1.關(guān)于wx.chooseImage不能使用的問(wèn)題
現(xiàn)在weixin官方已經(jīng)停止維護(hù)wx.choose.Image組件了,現(xiàn)在一般都是使用的wx.choose.Media這個(gè)API接口,而這個(gè)API回調(diào)的文件臨時(shí)路徑的地址也發(fā)生的變化,現(xiàn)在如果想要打印出地址,可以使用如下的代碼
console.log(res.tempFiles[0].tempFilePath)
2.關(guān)于“TypeError: Cannot read property 'cloudFile' of undefined”的錯(cuò)誤原因
如果你是按照微信官方文檔寫(xiě)的話,那么你的回調(diào)函數(shù)是如下格式:文章來(lái)源:http://www.zghlxwxcb.cn/news/detail-580585.html
success(res) {
console.log(res.tempFiles.tempFilePath)
console.log(res.tempFiles.size)
}
但是這樣就會(huì)報(bào)以上錯(cuò)誤,正確的寫(xiě)法應(yīng)該是:文章來(lái)源地址http://www.zghlxwxcb.cn/news/detail-580585.html
success:(res)=>{
console.log(res.tempFiles[0].tempFilePath)
console.log(res.tempFiles[0].size)
}
到了這里,關(guān)于微信小程序wx.chooseMedia的坑,含“TypeError: Cannot read property ‘cloudFile‘ of undefined”錯(cuò)誤原因的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!