merge react编码规范

This commit is contained in:
Boyuzhou 2016-10-17 15:27:47 +08:00
commit f1c0a49345
1 changed files with 19 additions and 2 deletions

View File

@ -22,6 +22,14 @@
- 注意react和html的表单元素的差异
- 使用es6后不支持mixin使用decorator进行扩展babel需要增加解析器和高阶组件方式扩展。
- 尽量不使用比较大的第三方js库
- 组件方法定义顺序 constructor --> 声明周期方法(componentWillMount,componentDidMount,
componentWillUpdate,componentDidUpdate,componentWillUnmount)
- 尽量多而有用的代码注释,方法用块级注释,结构如下例。
- 有必要需要些组件的销毁方法,比如 定时器,需要用销毁方法销毁定时器
- ...others 没有必要 勿用
- 自身定义的props属性应避免与react的关键字相同
- 代码规范使用 [airbnb规范](https://github.com/airbnb/javascript/tree/master/react)
@ -75,7 +83,9 @@ const defaultProps = {
}
//定义组件
/**
* 定义组件
*/
class Button extends React.Component {
constructor (props) {
super(props);
@ -83,13 +93,20 @@ class Button extends React.Component {
this.state = {
//每一个state要写注释
}
// 事先声明方法绑定
this.MyEvent = this.MyEvent.bind(this);
}
//自定义函数方法,及注释
MyEvent () {
}
//组件生命周期方法
render () {
return (
// <div onClick={this.MyEvent}></div>
)
}
}