Tencent / weui

A UI library by WeChat official design team, includes the most useful widgets/modules in mobile web applications.

Home Page:https://weui.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

uploader 组件上传文档写的不清楚,建议补充下

lt132618 opened this issue · comments

文档中的方法如下所示:resolve的数据格式不写清楚,一般根本不知道 需要怎么去返回数据
uplaodFile(files) {
console.log('upload files', files)
// 文件上传的函数,返回一个promise
return new Promise((resolve, reject) => {
setTimeout(() => {
reject('some error')
}, 1000)
})
},

实际上需要resolve 的数据格式是这样: resolve({urls: [http:xxxxxxxx]});
建议改下文档