收藏
回答

wx.chooseMessageFile(OBJECT)这个函数,能拿到原始的文件名吗?

wx.chooseMessageFile({


count: 1,


type: 'file',


success: (res) => {


const filePath = res.tempFiles[0].path;


console.log("上传mp3,filePath=",filePath)


这段代码,filePath 是微信的临时文件名,比如


filePath= wxfile://tmp_6cc43513708037c36e51d29f1a42ea1c4a52830c5e9fc845.mp3


但显然,用户上传的时候,是一个更好记的名字,比如"测试一下.mp3", 如何拿到这个文件名?有这个好记的名字,我后端更容易排查问题。

回答关注问题邀请回答
收藏
登录 后发表内容