我正在查看React文档并进入静态方法。我想知道在什么样的情况下它可能有用而且无法想到。
在React中构建组件时,是否存在静态方法有用的特定场景?
答案 0 :(得分:7)
defaultProps
和propTypes
是React组件的静态成员,它们不会针对每个实例进行更改。见https://facebook.github.io/react/docs/reusable-components.html
静态属性的一个示例是能够跟踪创建对象的实例数(而不是特定于React)。请注意,大多数情况下,如果要修改状态,静态方法就会产生代码异味。
var Contacts = React.createClass({
statics: {
instanceCount: 0
},
getInitialState: function() {
Contacts.instanceCount++
return {};
},
render: function() {
return (<div > Hello {
this.props.name
} < /div>);
}
});
console.log(Contacts.instanceCount) // 0
ReactDOM.render( < Hello name = "World" / > ,
document.getElementById('container')
);
console.log(Contacts.instanceCount) // 1
另一个例子是存储常量的方法。
var Contacts = React.createClass({
statics: {
MAX_VALUE:100
},
render: function() {
return (<div > Hello {
this.props.name
} < /div>);
}
});
if (someValue > Contacts.MAX_VALUE) {
}