小程序
小游戏
企业微信
微信支付
扫描小程序码分享
直接用
wx.openDocument 好像不能是本地路径?! wx.downloadFile 也不能加载本地路径?
2 个回答
加 fileType
wx.openDocument({
filePath: filePath,
fileType:'',
success: function (res) {
console.log('打开文档成功')
},
内容中可能包含密钥、AppSecret等私密参数,泄漏会有安全风险,请检查内容并确认。
我也遇到了这个问题,
wx.downloadFile({
url: 'https://demo.jerei.com/resources/web/heql.doc',
var filePath = res.tempFilePath
complete:e=>{
console.log(e)
}
})
并不好使,不知道错在哪里。
加 fileType
wx.openDocument({
filePath: filePath,
fileType:'',
success: function (res) {
console.log('打开文档成功')
},
我也遇到了这个问题,
wx.downloadFile({
url: 'https://demo.jerei.com/resources/web/heql.doc',
success: function (res) {
var filePath = res.tempFilePath
wx.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功')
},
complete:e=>{
console.log(e)
}
})
并不好使,不知道错在哪里。