wx.uploadFile(OBJECT)
将本地资源上传到开发者服务器。如页面通过 wx.chooseImage 等接口获取到一个本地资源的临时文件路径后,可通过此接口将本地资源上传到指定服务器。客户端发起一个 HTTPS POST 请求,其中 content-type 为 multipart/form-data 。
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
}
})
}
})
求助:
“将本地资源上传到开发者服务器。如页面通过 wx.chooseImage 等接口获取到一个本地资源的临时文件路径后,可通过此接口将本地资源上传到指定服务器。”
wx.chooseImage 仅仅只能获取图片资源。
如果我想将其他类型的文件上传,如doc,pdf这些,能用什么接口从本地获取呢?