antd5上传图片显示405解决

antd5上传图片,默认使用上传方式会调用本地的接口。

405 Method Not Allowed
状态码 405 Method Not Allowed 表明服务器禁止了使用当前 HTTP 方法的请求。
antd5上传图片显示405解决_第1张图片

antd5上传图片显示405解决_第2张图片

Upload 
{...props}
  beforeUpload={(file) => {
	//自定义上传图片的逻辑
	
	//最后返回false
	return false
}}
>
    <Button icon={<UploadOutlined />}>Upload</Button>
  </Upload>

最后,上传图片时,不会再调用localhost的接口,没有任务接口变化。

另一个,可以直接使用customRequest。
https://github.com/react-component/upload#customrequest
在这里插入图片描述
antd5上传图片显示405解决_第3张图片

查看官方文档:https://ant-design.antgroup.com/components/upload-cn#uploadfile

你可能感兴趣的:(ui组件库,react,umi,antd5)