提交 23b9e877 编写于 作者: 雪洛's avatar 雪洛

Update storage.md

上级 0829f497
......@@ -56,13 +56,25 @@ uni.chooseImage({
// promise
const result = await uniCloud.uploadFile({
filePath: filePath
filePath: filePath,
onUploadProgress: function(progressEvent) {
console.log(progressEvent);
var percentCompleted = Math.round(
(progressEvent.loaded * 100) / progressEvent.total
);
}
});
// callback
uniCloud.uploadFile({
filePath: filePath
},
onUploadProgress: function(progressEvent) {
console.log(progressEvent);
var percentCompleted = Math.round(
(progressEvent.loaded * 100) / progressEvent.total
);
},
success() {},
fail() {},
complete() {}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册