问题:在上传视频时,出现进度条一直是在上传中的,在前端打console时发现,Upload组件的onChange事件一直是 uploading状态,但是后端返回200,已经上传成功了
解决办法:在onChange 方法中,当上传状态是uploading时,重新塞下值
写成
this.setState({fileList: [... info.fileList]});
而不是
this.setState({fileList3: info.fileList});
问题:在上传视频时,出现进度条一直是在上传中的,在前端打console时发现,Upload组件的onChange事件一直是 uploading状态,但是后端返回200,已经上传成功了
解决办法:在onChange 方法中,当上传状态是uploading时,重新塞下值
写成
this.setState({fileList: [... info.fileList]});
而不是
this.setState({fileList3: info.fileList});