-
当前 Bug 的表现
-
调用getFileInfo时使用的文件摘要算法为‘sha1’,有的时候返回的digest值为’’,导致后续计算出错
- 提供一个最简复现 Demo
function getObjectName (filePath) {
return new Promise(function (resolve, reject) {
wx.getFileInfo({
filePath: filePath,
digestAlgorithm: ‘sha1’,
success: function (res) {
console.log(res.digest)
resolve(res)
},
fail: function (err) {
reject(err)
}
})
})
}
麻烦提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。