背景:下载 PDF 文件,并允许用户打开

    问题:文件名带有中文,导致文件名称被转码,同时文件名称也包含了其他字符

    尝试解决方案:
    1. 使用 FileSystemManager.rename(),在模拟器能写入,但在Android,iOS 都无权限

    最终采用方案:

    1. wx.downloadFile({
    2. // 源文件下载地址
    3. url: downLoadUrl,
    4. // 指定的本地路径,必须带后缀名
    5. // wx.env.USER_DATA_PATH 本地文件根目录
    6. filePath: wx.env.USER_DATA_PATH + `/${xx}.pdf`,
    7. success(res) {
    8. if (res.statusCode === 200) {
    9. wx.openDocument({
    10. filePath: res.filePath,
    11. fileType: "pdf",
    12. showMenu: true
    13. })
    14. }
    15. }
    16. })