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

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。