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这些,能用什么接口从本地获取呢?
你好,目前暂不支持此功能。
请问您用什么方法解决的?
强烈建议开放上传其它类型文件功能
您换别的方法解决这个问题了吗?上传其它类型的文档
没有这个接口,我也是翻遍了文档都没找到