wx.downloadFile({ url: res.currentTarget.dataset.current, filePath:wx.env.USER_DATA_PATH+'/要改的名字.后缀', success: function (res) { const filePath = res.filePath wx.openDocument({ filePath: filePath, showMenu:true, success: function (res) { console.log('打开文档成功') } }) } })
wx.openDocument打开文件后,有办法显示自定义文件名吗?使用 wx.downloadFile + wx.openDocument 方法后可以打开pdf文件,但安卓显示乱码名,苹果显示文件预览很不好看,请问有什么办法可以显示自定义名吗
2023-08-16