1.参数:传递一个数组 recursiveUpload(files) { let upload_data = new FormData(); const len = files.length; if (this.current_index < len) { upload_data.append("file", files[this.current_index]); Service.uploadTheme(upload_data) .then((res) => { if (res) { this.current_index++; t...