wx.chooseImage({
count: 1,
sizeType: ['original', 'compressed'],
sourceType: ['album', 'camera'],
success(res) {
console.log('chooseImage',res)
// tempFilePath可以作为img标签的src属性显示图片
// const tempFilePaths = res.tempFilePaths
wx.uploadFile({
url: app.globalData.api.chuantu, //仅为示例,非真实的接口地址
filePath: res.tempFilePaths[0],
name: '',
header: app.globalData.api.header,
formData: {},
success(res) {
console.log('uploadFile', JSON.stringify(res))
选择完图片后,走 uploadFile 没反映,res.tempFilePaths[0] 值是 wxfile://temp_.....jpg 这种,正式版也不能上传 upload 都没反应,
但是在开发工具中可以上传,但是开发工具中返回的是 http://tmp/这种,请问这是怎么回事??
合法域名这样配置对吗?
开发工具可以上传?确认一下是不是上传的域名没有配置在合法域名中?
https://developers.weixin.qq.com/miniprogram/dev/framework/ability/network.html
另外也检查下参数是否正确