小程序体验版上传图片出现MiniProgram,Json Parse error如何排查?
微信开发者工具,真机调试都能正常上传,但是,体验版就会报图片中的错误,基础库2.14.4
开发是使用了uniapp+uview进行编写的
upLoadImg(res, index, lists, name) {
const data = JSON.parse(res.data)
const code = data.code
if (code === 0) {
this.$refs.uToast.show({
title: `上传成功,${data.msg}`,
type: 'success',
})
}
},