Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
680 views
in Technique[技术] by (71.8m points)

[已解决]antd4.x Upload配合Form表单无法使用的问题

业务背景

最近在根据视频学react + antd,还木有来得及通读文档.因项目进度问题,暂时木有时间通读文档,所以遇到超过半个小时自己无法搞定的问题,就来提个问题,麻烦各位了

遇到的困难

Upload放在Form下面,初始化组件会提示一个错误

Warning: [antd: Upload] `value` is not a valid prop, do you mean `fileList`? 

当我在Form.Item加上valuePropName="fileList"属性后,初始化组件正常,但是点击上传图片就会报一个空指针错误

Warning: Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in a useEffect cleanup function.

我的问题

  1. 空指针异常这个怎么解决呢?
  2. 是什么原因导致这个问题产生的呢?

示例代码

https://codesandbox.io/s/form...


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

请参考官方文档中 Form 使用 Upload 的例子:https://ant.design/components...


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...