fbpx

分类目录:JS

以下是分类 JS 下的所有文章

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属性,不过设置……

Vue Element的el-switch组件使用总结

在做vue的项目时,用的是Element的框架,发现el-switch组件有个问题,原本以为是框架的bug,最后发现是vue的使用问题。 【问题】 参考: https://github.com/ElemeFE/element/issues/11698  概述:不管el-switch的active-value属性为active-value="100"或active-value=100,v-model传如的变量为'……

​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, } ……