您的当前位置:首页正文

uniapp 微信小程序 预览pdf方法

2024-12-01 来源:个人技术集锦

效果图:

1、在小程序中

// #ifdef MP */  是区分运行的环境,在小程序中可使用如下方法
 uni.downloadFile({
   
   url: item.link,//文件地址
    success: function (res) {
   
         var filePath = res.tempFilePath;
         uni.openDocument({
   
               filePath: filePath,
               showMenu: false,  //这个参数可设置你预览的文件能否被直接转发,此次是设置是否展示分享菜单
               success: function
显示全文