- 每个文件只包含一个 React 组件
- 使用
JSX
语法 - 除非是从一个非
JSX
文件中初始化 app,否则不要使用React.createElement
- 尽量不用使用
mixins
,mixins
在React 0.13+版本中 逐渐放弃使用 - 行尾分号必加
// bad
let name = 'John'
// good
let name = 'John';
- 不要将prop传给state
// bad
componentDidMount: function(){
this.setState({ people: this.props.people })
// BAD: usually a code smell if you're pass down props to state.
}
- 只使用应用程序的prop数据,不直接使用state,尽量写stateless组件
Class vs React.createClass
- 除非有更好的理由使用混淆(mixins),否则就使用组件类继承
React.Component
// bad
const Listing = React.createClass({
render() {
return <div />;
}
});
// good
class Listing extends React.Component {
render() {
return <div />;
}
}
- 扩展名: 使用
js
作为 React 组件的扩展名 - 文件名: 文件命名采用帕斯卡命名法,如:
ReservationCard.js
- 引用名: 组件引用采用帕斯卡命名法,其实例采用驼峰式命名法
// bad
const reservationCard = require('./ReservationCard');
// good
const ReservationCard = require('./ReservationCard');
// bad
const ReservationItem = <ReservationCard />;
// good
const reservationItem = <ReservationCard />;
- 组件命名: 使用文件名作为组件名例如:
ReservationCard.js
组件的引用名应该是ReservationCard
然而,对于一个目录的根组件,应该使用index.js
作为文件名,使用目录名作为组件名
// bad
const Footer = require('./Footer/Footer')
// bad
const Footer = require('./Footer/index')
// good
const Footer = require('./Footer')
- 不要通过
displayName
来命名组件,通过引用来命名组件
// bad
export default React.createClass({
displayName: 'ReservationCard',
// stuff goes here
});
// good
export default class ReservationCard extends React.Component {
}
- 1tab = 4space,缩进为4空格
- 对于
JSX
语法,遵循下面的对齐风格
// bad
<Foo superLongParam="bar"
anotherSuperLongParam="baz" />
// good
<Foo
superLongParam="bar"
anotherSuperLongParam="baz"
/>
// if props fit in one line then keep it on the same line
<Foo bar="bar" />
// children get indented normally
<Foo
superLongParam="bar"
anotherSuperLongParam="baz"
>
<Spazz />
</Foo>
- 对于
JSX
使用双引号,对其它所有 JS 属性使用单引号
为什么?因为 JSX 属性不能包含被转移的引号,并且双引号使得如
"don't"
一样的连接词很容易被输入常规的 HTML 属性也应该使用双引号而不是单引号,JSX 属性反映了这个约定
// bad
<Foo bar='bar' />
// good
<Foo bar="bar" />
// bad
<Foo style={{ left: "20px" }} />
// good
<Foo style={{ left: '20px' }} />
- 在自闭和标签之前留一个空格
// bad
<Foo/>
// very bad
<Foo />
// bad
<Foo
/>
// good
<Foo />
- 属性名采用驼峰式命名法
// bad
<Foo
UserName="hello"
phone_number={12345678}
/>
// good
<Foo
userName="hello"
phoneNumber={12345678}
/>
- 当组件跨行时,要用括号包裹 JSX 标签
/// bad
render() {
return <MyComponent className="long body" foo="bar">
<MyChild />
</MyComponent>;
}
// good
render() {
return (
<MyComponent className="long body" foo="bar">
<MyChild />
</MyComponent>
);
}
// good, when single line
render() {
const body = <div>hello</div>;
return <MyComponent>{body}</MyComponent>;
}
- 没有子组件的父组件使用自闭和标签
// bad
<Foo className="stuff"></Foo>
// good
<Foo className="stuff" />
- 如果组件有多行属性,闭合标签应写在新的一行上
// bad
<Foo
bar="bar"
baz="baz" />
// good
<Foo
bar="bar"
baz="baz"
/>
- 当需要从数组中循环显示一系列组件,使用inline方式确保代码的可读性更好。如果循环函数太长太复杂,可以将它当作组件的方法来处理
// bad
let renderList = items.map(function (item, i) {
return <li key={i}>{item}</li>;
);
<ul>{renderList}</ul>
// good
<ul>
{items.map(function (item, i) {
return <li key={i}>{item}</li>;
)}
</ul>;
// or with ES6
<ul>
{items.map((item, i) => <li key={i}>{item}</li>)}
</ul>;
- 对 React 组件的自定义方法和事件处理函数使用
underscore
前缀
// bad
class extends React.Component {
onClickSubmit() {
// do stuff
}
// other stuff
});
// good
React.createClass({
_onClickSubmit() {
// do stuff
}
// other stuff
});
- 事件处理函数必须以
_handle{EventName}
命名,Props
传递事件处理时必须命名为on{EventName}
_handleButtonClick: function (e) { /* ... */ }
<Foo onButtonClick={this._handleButtonClick} />
- render返回的顶层元素必须包含一个和组件对应的className,这对于CSS/LESS的样式命名空间分离是很有益的
// Foobar.js
import React from 'react';
import 'Foobar.less';
const Foobar = React.createClass({
render: function () {
return <div className="foobar">
Foobar
</div>;
}
});
export default Foobar;
// Foobar.less
.foobar {
// Rules defined here will only apply to Foobar elements
}
-
继承 React.Component 的类的方法遵循下面的顺序
- constructor
- optional static methods
- getChildContext
- componentWillMount
- componentDidMount
- componentWillReceiveProps
- shouldComponentUpdate
- componentWillUpdate
- componentDidUpdate
- componentWillUnmount
- clickHandlers or eventHandlers like onClickSubmit() or onChangeDescription()
- getter methods for render like getSelectReason() or getFooterContent()
- Optional render methods like renderNavigation() or renderProfilePicture()
- render
-
render放在最后的好处是你只要把鼠标滚动到页面底部就能看到组件输出的JSX结构
-
怎么定义 propTypes,defaultProps,contextTypes 等等...
import React, { PropTypes } from 'react';
const propTypes = {
id: PropTypes.number.isRequired,
url: PropTypes.string.isRequired,
text: PropTypes.string,
};
const defaultProps = {
text: 'Hello World',
};
class Link extends React.Component {
static methodsAreOk() {
return true;
}
render() {
return <a href={this.props.url} data-id={this.props.id}>{this.props.text}</a>
}
}
Link.propTypes = propTypes;
Link.defaultProps = defaultProps;
export default Link;
-
使用 React.createClass 时,方法顺序如下:
- displayName
- propTypes
- contextTypes
- childContextTypes
- mixins
- statics
- defaultProps
- getDefaultProps
- getInitialState
- getChildContext
- componentWillMount
- componentDidMount
- componentWillReceiveProps
- shouldComponentUpdate
- componentWillUpdate
- componentDidUpdate
- componentWillUnmount
- clickHandlers or eventHandlers like onClickSubmit() or onChangeDescription()
- getter methods for render like getSelectReason() or getFooterContent()
- Optional render methods like renderNavigation() or renderProfilePicture()
- render
在ES6中,使用这种方式定义一个类:
import React, { Component } from 'react';
const propTypes = { /* ... */ };
const defaultProps = { /* ... */ };
export default class FooComponent extends Component {
componentWillMount() {}
componentWillUnmount() {}
_handleButtonClick() {}
_myCustomMethod() {}
render() {}
}
FooComponent.propTypes = propTypes;
FooComponent.defaultProps = defaultProps;
-
propTypes
和defaultProps
在文件的顶部定义成常量,这和ES5的写法一样,这样做的好处是开发者很容易在文件的头部就发现组件的关键信息 -
如果
propTypes
包含很多项内容, 你可以直接从react
中导出PropTypes
,这样写的代码会简短许多
// bad
import React from 'react';
const propTypes = {
foo: React.PropTypes.string,
bar: React.PropTypes.number,
foobar: React.PropTypes.object,
// etc
};
// good
import React, { PropTypes } from 'react';
const propTypes = {
foo: PropTypes.string,
bar: PropTypes.number,
foobar: PropTypes.object,
// etc
};