本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- siemens800
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
最新文章列表
React Uncaught TypeError: _react2.default.unmountComponentAtNode is not a functi
React报错提示:
Uncaught TypeError: _react2.default.unmountComponentAtNode is not a function
报错原因:
React版本过高,不支持React.render
React.unmountComponentAtNode(wrapper);
解决方案:
1.降级React版本
2.使 ...
React Uncaught TypeError: _react2.default.findDOMNode is not a function
React报错提示:
Uncaught TypeError: _react2.default.findDOMNode is not a function
报错原因:
React版本过高,不支持React.render
React.findDOMNode(this.refs.confirm).focus();
解决方案:
1.降级React版本
2.使用Rea ...
React Uncaught TypeError: _react2.default.render is not a function
React报错提示:
Uncaught TypeError: _react2.default.render is not a function
报错原因:
React版本过高,不支持React.render
React.render(<Confirm {...props}/>, wrapper);
解决方案:
1.降级React版本
2.使用Re ...
React <Component> is changing a controlled input of type text to be uncontrolled
React警告提示:
warning.js:44 Warning: AddAddress is changing a controlled input of type text to be uncontrolled.
Input elements should not switch from controlled to uncontrolled (or vice versa).
...
React Uncaught Invariant Violation: ReactMount: Two valid but unequal nodes with
报错提示:
invariant.js:39 Uncaught Invariant Violation: ReactMount:
Two valid but unequal nodes with the same `data-reactid`: .0.2.4.0.$117405.0
报错原因:
由于你的React代码包含了双重点击事件或者,A标签里面嵌套了A标签或onCl ...
React Uncaught Invariant Violation: onlyChild must be passed a children with exa
报错提示:
Uncaught Invariant Violation: onlyChild must be passed a children with exactly one child.
报错代码:
pmessage = this.state.showmessage?<div className="pmessage">{this. ...
React addons.update setState 链式更新object属性
在上一篇文章里,我使用纯js更新object对象,然后在setState里面,这样操作属于原生的,今天在解读React.addons对象的时候,发现有update函数也可以链式更新对象,挺方便的,就是解读起来不那么容易。
import React from 'react';
// 经过种种setState, detail对象是这样的:this.state.detail.iteminf ...
iso android a标签css :active 在微信或app内嵌不起作用解决方案
前端开发今天有踩到一个大坑,特此记录。
事情的经过是这样的,我们app里面内嵌了一个页面,很多用户网络较慢情况下点击反应比较慢,导致像卡屏一般。需要在用户点击的时候给他个css交互,代表他的请求在处理中,遂想到 css :active 伪类来解决。
li:active {
background: #e3e3e3;
}
在android上面各种好用,在ios上面测试sa ...
Gulp watch error Error: watch /home/react-mobile/stylus/ ENOSPC
'watch' errored after 19 ms
[13:25:21] Error: watch /home/react-mobile/stylus/ ENOSPC
at exports._errnoException (util.js:870:11)
at FSWatcher.start (fs.js:1234:19)
at Object.fs.watc ...
js post x-www-form-urlencoded、form-url数据,Nodejs获取x-www-form-urlencoded数据
1、post数据结构:
Form Data:
type:post
name:post发送url参数
2、js代码实现
var xhr = new XMLHttpRequest();
xhr.open('post', 'http://localhost:3000/post', true);
xhr.setRequestHeader('Content-Type', 'ap ...