小程序的上传文件接口的注意需要对接口返回的数据转换为JavaScript对象//JSON.parse()将JSON格
小程序的上传文件接口的注意
需要对接口返回的数据转换为 JavaScript 对象
// JSON.parse()将JSON格式的数据转换为 JavaScript 对象<br><br>JSON.parse(res.data)
官方文档
https://developers.weixin.qq.com/miniprogram/dev/api/network/upload/wx.uploadFile.html
wx.chooseImage({
success (res) {
const tempFilePaths = res.tempFilePaths
wx.uploadFile({
url: 'https://example.weixin.qq.com/upload', //仅为示例,非真实的接口地址 该接口返回的的JSON
filePath: tempFilePaths[0],
name: 'file',
formData: {
'user': 'test'
},
success (res){
// 需要JSON.parse 因为上传接口返回的是字符串
console.log(typeof res.data)
let data = JSON.parse(res.data)
//do something
}
})
}
})
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
小程序 上传文件 接口