获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
成功设置标题 参考代码: openConfirmation(){ const { orderDetail } = this.data; wx.downloadFile({ url: `${此处是文件的链接}`, filePath: wx.env.USER_DATA_PATH + "/" + `${orderDetail.name}确认书.pdf`, success: res => { const filePath = res.filePath; wx.openDocument({ filePath: filePath, showMenu: true, fileType: 'pdf', success: function (res) { console.log('打开文档成功') } }) } }) }
wx.openDocument()如何设置标题?而且下载的文件名也被修改了?问题如标题描述!
2021-09-28