前端这边上传成功,接口状态都200了,但是后台同事在服务器里面找不到前端上传成功的文件,不知为什么const props_ = { name: 'file', directory: true, action: 'http://172.16.238.58:10304/ssgz/swagger-UploadhjCCB',
onChange(info) { if (info.file.status === 'done') {
message.success(`${info.file.name} 文件上传成功`);
} else if (info.file.status === 'error') {
message.error(`${info.file.name} 文件上传失败`);
}
},
};
render() { return ( <Upload {...props_}>
<Button>
<Icon type="upload" />上传 </Button>
</Upload>
)
}
添加回答
举报
0/150
提交
取消