云开发官方文档错误,去哪能投诉一下你们写文档的?
云开发中 存储
wx.cloud.uploadFile
的文档中的示例代码
wx.cloud.uploadFile({ cloudPath: '/example.png', filePath: '', // 小程序临时文件路径
success: res => { // get resource ID
console.log(res.fileID)
}, fail: err => { // handle error
}
})
其中
/example.png
应该是
example.png
没有 /
其中
// 小程序临时文件路径
应该是
// 文件路径
不光是 临时文件 才能 上传到云
6 回复