最新文章列表

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 ...
qiaolevip 评论(0) 有3546人浏览 2016-05-31 15:19

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 ...
qiaolevip 评论(1) 有4304人浏览 2016-05-31 15:17

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). ...
qiaolevip 评论(0) 有6273人浏览 2016-05-30 20:11

React显示原生css style样式在dom对象里

react设置style是需要一个object对象的 var divStyle = { color: 'white', backgroundImage: 'url(' + imgUrl + ')', WebkitTransition: 'all', // note the capital 'W' here msTransition: 'all' // 'ms' is t ...
qiaolevip 评论(0) 有2409人浏览 2016-05-23 17:24

【解决】React setState延迟delay导致数据更新不及时,代码无法正确执行

之前React setState后在另一个函数调用state的值没有更新:   // init state.type = 'new'; activeMenu(type) { // type = top if (type == this.state.type) return; this.loadList(type); } loadList(type) { ...
qiaolevip 评论(0) 有17289人浏览 2016-05-12 18:41

doT js模板引擎 使用自定义函数进行渲染的两种方法

doT模板是一款js渲染模板引擎,速度快,文件小,渲染效果良好而著称。 官网-Logo,点击进入:   更多丰富js模板引擎,猛击:https://qiaolevip.github.io/frontend-template-engines/   doT模板Example:https://qiaolevip.github.io/frontend-template-engines/d ...
qiaolevip 评论(0) 有4602人浏览 2016-05-12 14:05

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. ...
qiaolevip 评论(1) 有4049人浏览 2016-05-11 12:03

React addons.update setState 链式更新object属性

在上一篇文章里,我使用纯js更新object对象,然后在setState里面,这样操作属于原生的,今天在解读React.addons对象的时候,发现有update函数也可以链式更新对象,挺方便的,就是解读起来不那么容易。 import React from 'react'; // 经过种种setState, detail对象是这样的:this.state.detail.iteminf ...
qiaolevip 评论(0) 有4313人浏览 2016-04-26 17:34

iso android a标签css :active 在微信或app内嵌不起作用解决方案

前端开发今天有踩到一个大坑,特此记录。   事情的经过是这样的,我们app里面内嵌了一个页面,很多用户网络较慢情况下点击反应比较慢,导致像卡屏一般。需要在用户点击的时候给他个css交互,代表他的请求在处理中,遂想到 css :active 伪类来解决。 li:active { background: #e3e3e3; }   在android上面各种好用,在ios上面测试sa ...
qiaolevip 评论(0) 有1947人浏览 2016-04-26 15:49

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 ...
qiaolevip 评论(0) 有1912人浏览 2016-04-25 13:32

Sublime text 3 最新版 注册码 破解

  —– BEGIN LICENSE —– Michael Barnes Single User License EA7E-821385 8A353C41 872A0D5C DF9B2950 AFF6F667 C458EA6D 8EA3C286 98D1D650 131A97AB AA919AEC EF20E143 B361B1E7 4C8B7F04 B085E65E 2 ...
qiaolevip 评论(0) 有2733人浏览 2016-04-20 17:44

React 处理form表单input输入项双向数据绑定

<form method="post" autoComplete="off" encType="multipart/form-data" onSubmit={this.onSubmit.bind(this)}> <div className={ 'title bl-line' + (state.active ...
qiaolevip 评论(0) 有8004人浏览 2016-04-12 18:51

React 更新数据array子项添加新的属性便于循环处理

// 初始化数据 this.state = { comments: [] } // 添加新的属性 showReplyInfo(index) { let items = this.state.comments; let item = items[index]; item.isLogin = this.state.isLogin; item.showRep ...
qiaolevip 评论(0) 有2110人浏览 2016-04-12 18:47

React 动态更新子项item从array数据

// 初始化state this.state = { files: [], } // 添加数据到array this.setState({ files: [ ...this.state.files, fileInfo ] }); // 动态移除子项从array removePic(index) { this.setState( ...
qiaolevip 评论(0) 有2327人浏览 2016-04-12 18:44

React 级联下拉列表实现

// 数据结构 { "status": "200", "data": { "groups": [ { "name": "官方专区", "todayposts": "0", "gid&q ...
qiaolevip 评论(0) 有7336人浏览 2016-04-12 18:39

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 ...
qiaolevip 评论(0) 有6529人浏览 2016-04-05 16:13

js post json、object、application/json数据,Nodejs获取json数据

1、post数据结构:   data: { type: 'post', name: 'post发送json参数' }     2、js代码实现   var xhr = new XMLHttpRequest(); xhr.open('post', 'http://localhost:3000/post', true); xhr ...
qiaolevip 评论(0) 有4496人浏览 2016-04-05 16:10

js post FormData、Payload、multipart/form-data数据,Nodejs获取multipart/form-data数据

1、post数据结构: Request Payload ------WebKitFormBoundary3wELd4ULBH0cBXBj Content-Disposition: form-data; name="type" post ------WebKitFormBoundary3wELd4ULBH0cBXBj Content-Disposition: ...
qiaolevip 评论(0) 有15004人浏览 2016-04-05 15:59

JS/html/form/XMLHttpRequest Ajax 批量上传文件/图片的3种方式

写在前面:后端选择你项目中使用的语言接收并处理图片。   由于上传图片都是以jQuery插件,为了纯js的崛起,遂选择ajax上传的方式,但在查找相关实例的时候着实困难重重,仅这个上传功能来回测试不下于2天的时间,最终还是执着战胜了困境。 以下3种方式都经多次测试通过。   重要说明: 第一种:切记:form -> enctype="multipart/form-da ...
qiaolevip 评论(0) 有6072人浏览 2016-04-02 16:17

React state从数组中动态移除子项item

1、当我们动态操作state的适合,遇到移除一个子项,需要更新数组的state // set state this.state = { files: [] } // add item this.setState({ files: [ ...this.state.files, fileInfo ] }); ...
qiaolevip 评论(0) 有10592人浏览 2016-04-01 14:48

最近博客热门TAG

Java(141747) C(73651) C++(68608) SQL(64571) C#(59609) XML(59133) HTML(59043) JavaScript(54918) .net(54785) Web(54513) 工作(54116) Linux(50906) Oracle(49876) 应用服务器(43288) Spring(40812) 编程(39454) Windows(39381) JSP(37542) MySQL(37268) 数据结构(36423)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics