uniCloud.uploadFile({
filePath: this.avatarUrl,
cloudPath: `user/avatar/${this.userInfo?._id}}.png`,
cloudPathAsRealPath: true,
fileType: 'image',
})
4***@qq.com
- 发布:2025-01-24 14:08
- 更新:2025-01-24 14:08
- 阅读:16
产品分类: uniCloud/支付宝小程序云
示例代码:
操作步骤:
uniCloud.uploadFile({
filePath: this.avatarUrl,
cloudPath: `user/avatar/${this.userInfo?._id}}.png`,
cloudPathAsRealPath: true,
fileType: 'image',
})
删除云存储中对应userId的图片,执行上传,返回的结果依旧是被删除的图片
uniCloud.uploadFile({
filePath: this.avatarUrl,
cloudPath: `user/avatar/${this.userInfo?._id}}.png`,
cloudPathAsRealPath: true,
fileType: 'image',
})
删除云存储中对应userId的图片,执行上传,返回的结果依旧是被删除的图片
预期结果:
最终结果应该保存的是最新上传的图片,同一个userId有且仅有一张图片
最终结果应该保存的是最新上传的图片,同一个userId有且仅有一张图片
实际结果:
图片始终是最开始上传的那个图片
图片始终是最开始上传的那个图片
bug描述:
uniCloud.uploadFile({
filePath: this.avatarUrl,
cloudPath: `user/avatar/${this.userInfo?._id}}.png`,
cloudPathAsRealPath: true,
fileType: 'image',
})
删除云存储中对应userId的图片,执行上传,返回的结果依旧是被删除的图片