小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小程序wx.cloud.downloadFile在WindowsPC上运行小程序返回的值wxfile://temp/13是这个不正确,而在移动端上返回的是wxfile://tmp_116b61a7b38079353b70a6178918b84d这样子才可以,为什么两个会不一样
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
getQuestionFile() {
var filePath = ‘cloud://yjbank-full.796a-yjbank-full-1259652488/xc_exam/A_xc_j0.json’;
console.log(filePath, “>>>>filePath>>>>”);
wx.cloud.downloadFile({
fileID: filePath, // 文件 ID
}).then(res => {
console.log(res.tempFilePath);
flag = 0;
var a = wx.getFileSystemManager().readFileSync(res.tempFilePath, “utf-8”);
console.log(a, “>>>>>>>>>>>>a>>>>>>>”)
}).catch(error => {
console.log(error)
})
},
这里打印的res.tempFilePath这个值在windowsPC上的微信端和手机上打印的值不一样
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
请具体描述问题出现的流程,并提供pc微信版本号,能复现问题的简单代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
getQuestionFile() {
var filePath = ‘cloud://yjbank-full.796a-yjbank-full-1259652488/xc_exam/A_xc_j0.json’;
console.log(filePath, “>>>>filePath>>>>”);
wx.cloud.downloadFile({
fileID: filePath, // 文件 ID
}).then(res => {
console.log(res.tempFilePath);
flag = 0;
var a = wx.getFileSystemManager().readFileSync(res.tempFilePath, “utf-8”);
console.log(a, “>>>>>>>>>>>>a>>>>>>>”)
}).catch(error => {
console.log(error)
})
},
这里打印的res.tempFilePath这个值在windowsPC上的微信端和手机上打印的值不一样
请具体描述问题出现的流程,并提供pc微信版本号,能复现问题的简单代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
var filePath = ‘cloud://yjbank-full.796a-yjbank-full-1259652488/xc_exam/A_xc_j0.json’;
console.log(filePath, “>>>>filePath>>>>”);
wx.cloud.downloadFile({
fileID: filePath, // 文件 ID
}).then(res => {
console.log(res.tempFilePath);
flag = 0;
var a = wx.getFileSystemManager().readFileSync(res.tempFilePath, “utf-8”);
console.log(a, “>>>>>>>>>>>>a>>>>>>>”)
}).catch(error => {
console.log(error)
})
},
这里打印的res.tempFilePath这个值在windowsPC上的微信端和手机上打印的值不一样
var filePath = ‘cloud://yjbank-full.796a-yjbank-full-1259652488/xc_exam/A_xc_j0.json’;
console.log(filePath, “>>>>filePath>>>>”);
wx.cloud.downloadFile({
fileID: filePath, // 文件 ID
}).then(res => {
console.log(res.tempFilePath);
flag = 0;
var a = wx.getFileSystemManager().readFileSync(res.tempFilePath, “utf-8”);
console.log(a, “>>>>>>>>>>>>a>>>>>>>”)
}).catch(error => {
console.log(error)
})
},
这里打印的res.tempFilePath这个值在windowsPC上的微信端和手机上打印的值不一样
PC端微信版本号是2.9.5.41