代码如下:
配置好对应的filePath,之后保存即可
Page({
data: {
},
onLoad: function () {
var that = this;
var filePath = "http://192.168.1.35:8080/Test/test.doc";//对应的网络路径,可以是内网的或者外网
wx.downloadFile({//下载对应文件
url: filePath,
success: function (res) {
var filePath = res.tempFilePath;//文件路径
wx.openDocument({
filePath: filePath,//装载对应文件的路径
fileType: 'docx',//指定打开的文件类型
success: function (res) {
console.log("打开成功");
},
fail: function (res) {
console.log(res);
}
})
},
fail: function (res) {
console.log(res);
}
})
},
})