使用antd的Table组件时,console面板经常会出现一些warning,虽然不影响使用,但这对于强迫症者来说这是无法容忍。目前遇到的warning有以下几个:
⑴设置了rowKey属性,但所指定字段的值不是唯一的
Warning: Each child in an array or iterator should have a unique "key" prop.
⑵未设置rowKey属性,不过设置……
在使用react框架开发时,经常遇到一些问题,在此记录一下。
1.浏览器console面板经常提示以下警告
Warning: Each child in an array or iterator should have a unique "key" prop. Check the render method of&n……
在做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使用方法,设置的defaultValue或value属性应为moment对象,onchange的时候format为标准时间('YYYY-MM-DD HH:mm:ss')后再赋予对应提交的字段。
export default class DetailComponent extends Component {
state = {
visit_time: null,
}
……
这几天开始react的开发,用的是antd的组件,因为不熟悉react也不熟悉antd,今天踩了不少坑,其中很多是Select组件的,故做一下总结。
antd select组件单选下拉框defaultValue失效
代码如下
<FormItem {...formItemLayout} label="回访人员">
{getFieldDecorator('visit_us……
今天在本地上部署一个新的react项目,git clone之后执行npm install,却报了以下错误:
npm WARN tar zlib error: unexpected end of file npm ERR! cb() never called!
npm ERR! This is an error with npm ……
function getTime() {
var now= new Date(),
h=now.getHours(),
m=now.getMinutes(),
s=now.getSeconds(),
ms=now.getMilliseconds();
return (h+”:”+m+”:”+s+ ” ” +ms);
}
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>距离计算 - SOSOMapAPI</title>
<script charset="utf-8" src="http://m……