1.使用iview中的upload组件,选择好文件后,点击“上传”按钮才开始上传2.iview的upload api文档有说明,before-upload 上传文件之前的钩子,参数为上传的文件,若返回 false 或者 Promise 则停止上传所以我的想法是,通过before-upload回调函数中返回一个promise对象,点击上传后,执行promise的resolve方法,这样就可以实现点击后上传目前的问题是,点击“上传”按钮,如何执行Promise的resolve方法,vue中如何实现upload(rawFile, file) { this.$refs.input.value = null; if (!this.beforeUpload) { return this.post(rawFile); } const before = this.beforeUpload(rawFile); if (before && before.then) { before.then(processedFile => { if (Object.prototype.toString.call(processedFile) === '[object File]') { this.post(processedFile); } else { this.post(rawFile); } }, () => { this.onRemove(null, rawFile); }); } else if (before !== false) { this.post(rawFile); } else { this.onRemove(null, rawFile); }},
添加回答
举报
0/150
提交
取消