小程序-----打开PDF文件

wx.downloadFile({
        url:"https://xxxxxx.pdf",
        success(res){
          console.log(res)
          let data = res.tempFilePath;
          wx.openDocument({
            filePath:data,
            fileType:‘pdf‘
          })
        }
      })


原文来自:https://developers.weixin.qq.com/miniprogram/dev/api/file/wx.openDocument.html

小程序-----打开PDF文件

上一篇:微信小程序textarea层级过高(盖住其他元素)问题的解决办法


下一篇:微信团队分享:微信支付代码重构带来的移动端软件架构上的思考