uniapp使用打开文件时,安卓可以打开,iOS不能打开

时间:2025-04-02 17:49:13

使用encodeURI进行文件名编码

    previewFiles(item) {
      ({
        title: '加载中'
      })
      ({
        url: ,
        success: function(res) {
          if ( === 200) {
            ({
              showMenu: true,
              fileType: ,
              filePath: encodeURI(),
              success: function(res) {
                (res, '打开文件成功')
              },
              fail: function(res) {
                ({
                  title: '打开文件失败请重试',
                  icon: 'none'
                })
              }
            })
          } else {
            ({
              title: '打开文件失败请重试',
              icon: 'none'
            })
          }
          ()
        }
      })
    }