赞
踩
wx.downloadFile({
url: config.apiUrl, //文件本身url
success (res) {
if (res.statusCode === 200) {
wx.openDocument({
filePath: res.tempFilePath,
showMenu: true
})
}
}
})
wx.downloadFile({
url: config.apiUrl,//文件本身url
filePath: wx.env.USER_DATA_PATH + '/' + '考察文件.pdf', // 需要预览文件的名称
success (res) {
if (res.statusCode === 200) {
const filePath= res.filePath; // 微信临时文件路径
wx.openDocument({
filePath: filePath, //自定义的文件临时路径
showMenu: true
})
}
}
})
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。