微信小程序word, doc文件上传与下载
文件上传两种方式
上传当前小程序中下载过的文件
利用wx.chooseMessageFile 调用微信会话页面 选择要上传的文件
文件上传示例代码
微信会话中选择要上传的上传文件
//选择要上传的上传文件
choosefilefun(){
let _that = this;
wx.chooseMessageFile({
count: 10,
type: 'file',
success(res) {
console.log(_that,' :this')
// console.log(res, " :res")
const tempFiles = res.tempFiles
let {upfilelist} = _that.
1