fbpx

标签目录:antd

以下是与标签 “antd” 相关联的文章

antd Table组件 去除key、rowKey相关的Warning

使用antd的Table组件时,console面板经常会出现一些warning,虽然不影响使用,但这对于强迫症者来说这是无法容忍。目前遇到的warning有以下几个: ⑴设置了rowKey属性,但所指定字段的值不是唯一的 Warning: Each child in an array or iterator should have a unique "key" prop. ⑵未设置rowKey属性,不过设置……

​antd TimePicker使用

antd的TimePicker使用方法,设置的defaultValue或value属性应为moment对象,onchange的时候format为标准时间('YYYY-MM-DD HH:mm:ss')后再赋予对应提交的字段。 export default class DetailComponent extends Component { state = { visit_time: null, } ……