微信小程序上传图片是这样处理吗?它的临时图片路径可以使用吗?
wx.chooseImage({ success: function(res) { var tempFilePaths = res.tempFilePaths wx.uploadFile({ url: 'http://example.weixin.qq.com/upload', filePath: tempFilePaths[0], name: 'file', formData:{ 'user': 'test' }, success: function(res){ var data = res.data //do something } }) } })
chooseImage返回的图片路径是"http://tmp/wx9c030885c5d23127.o6zAJs8Ctaba5jZ8V02KK2RICZI8.9e714d9ec1b0f30aa6bf573b91a9a307.jpg",http的图片可以使用吗?
2 回复