小程序下载文件到手机本地?

发布于 8 年前作者 yixiuying3129 次浏览最后编辑 8 年前来自 ask

请问小程序可以将word文件下载到手机本地并且用wps等工具打开吗?

2 回复
yinqiang
yinqiang1 楼6 年前

试一下微信小程序内置方法wx.downloadFile()。

wx.downloadFile({

      url,

      success: function(res) {

        var filePath = res.tempFilePath;

        wx.openDocument({

          filePath: filePath,

          success: function(res) {

            console.log(‘打开文档成功’);

          }

        })

xiuying22
xiuying222 楼6 年前

这个是手机的问题,ios系统只能在线浏览软件,安卓系统右上角有设置可以用其他软件打开文件。