Ant Design
云生流长
这个作者很懒,什么都没留下…
展开
-
Ant Design Form表单中getFieldDecorator使用异常总结
背景:在使用Ant Design Form组件时,Form组件提供了一个create方法,使用form.create()(component)处理之后的component 会接收到一个props.form,使用props.form下的一系列方法,便可以很方便的写出具备自动校验功能的表单。代码如下所示:// 使用 Form.create 处理后的表单具有自动收集数据并校验的功能const S...原创 2018-04-04 16:47:23 · 75818 阅读 · 8 评论 -
Failed prop type: Invalid prop `dataSource` of type `object` supplied to `Table`, expected 异常解决方案
背景:React项目使用Ant Design后发报Warning: Failed prop type: Invalid prop `dataSource` of type `object` supplied to `Table`, expected `array`.问题点:传给Table组建dataSource={}属性的值的格式存在异常,dataSource={}属性只能传...原创 2018-04-18 10:20:19 · 22601 阅读 · 1 评论 -
【React】React.Children.only expected to receive a single React element child
背景:React 项目使用Ant Design + Storybook时发报:Uncaught Error: React.Children.only expected to receive a single React element child问题点:异常代码:<Dropdown overlay={menu}> <Rate allowHalf defaultValue...原创 2018-06-28 17:10:36 · 22499 阅读 · 6 评论 -
【Ant Design】Modal 中Select组件下拉选项随页面滚动与Select框分离异常
背景:使用Ant Design,在Modal组件中使用Select组件,当点击Select组件出现下拉选项后滚动原始页面,出现下拉选项和Select框分离的异常。异常图片:异常代码:<Select> // some <Option></Option></Select>问题点:Select组件有个API get...原创 2018-09-19 20:36:41 · 8821 阅读 · 4 评论