测试上传图片功能,急,微信开发者工具是不是和macbook兼容有问题?。上传失败后控制台不提示任何错误信息。
代码:
wx.chooseImage({
count: 1, // 最多可以选择的图片张数,默认9
sizeType: ['compressed'], // original 原图,compressed 压缩图,默认二者都有
sourceType: ['camera'], // album 从相册选图,camera 使用相机,默认二者都有
success: function(res){
var tempFilePaths = res.tempFilePaths
console.log(tempFilePaths)
wx.uploadFile({
url: 'https://******/user/upload',
filePath:tempFilePaths[0],
name:'reportPhotos',
header: {"content-type": "application/x-www-form-urlencoded"}
success: function(res){
wx.showToast({
title:res.data.state,
icon:'success',
duration:2000
})
},
本文来自微信小程序开发者论坛 微信小程序工厂 http://www.xcxgc.com 转载请保留。
微信小程序开发者回答:
忆***:
你写一个fail:function(res){
console.log(res.data)
}
看看你的错误信息
本文网址:http://www.91bianli.com/weixinxiaochengxu/54389.html