会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
xintong1314
学无止境
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2017年3月17日
react 生命周期
摘要: import React from 'react';import ReactDOM from 'react-dom'; //子类 class SayHello2 extends React.Component{ constructor(props){ super(props); this.state
阅读全文
posted @ 2017-03-17 14:20 xintong1314
阅读(139)
评论(0)
推荐(0)
编辑
react 函数bind(this)的三种方式
摘要: 1.在调用地方直接bind(this) handleClick(){ this.setState({ word2:'word2 changed' }) } <button onClick={this.handleClick.bind(this)}>点击</button> 2、使用ES6 箭头函数 h
阅读全文
posted @ 2017-03-17 13:29 xintong1314
阅读(357)
评论(0)
推荐(0)
编辑
react 三种组件定义方式
摘要: import React from 'react';import ReactDOM from 'react-dom';/1、/function sayHellofunction SayHello(props){ return <h1>hello {props.name}</h1>}ReactDOM.
阅读全文
posted @ 2017-03-17 13:00 xintong1314
阅读(176)
评论(0)
推荐(0)
编辑