我正在使用
创建一个反应组件React.render(<ReactComponent data="myData">, document.body);
数据模型更改后,我再次使用
调用渲染React.render(<ReactComponent data="myData">, document.body);
这是更新我的HTML的正确/推荐方式吗? 这将利用React虚拟DOM的优势(即仅渲染实际已更改的元素)。
另外,在传递myData时我应该使用状态还是属性?
答案 0 :(得分:7)
您应该只渲染一个执行AJAX请求等的主要App组件,并使用其render函数内的数据模型来更新子组件。
创建React组件时,应始终保持使用状态最小值并将其移至顶级组件,而应使用props来呈现子组件。
当我第一次开始使用React时,这篇文章给了我很多帮助:https://github.com/uberVU/react-guide/blob/master/props-vs-state.md
如下所示:
var App = React.createClass({
render: function(){
return (
<div>
<input type="button" onClick={this.handleClick}/>
<Dropdown items={this.state.countries}/>
</div>
)
},
getInitialState: function(){
return {countries: {}};
},
componentDidMount: function(){
var self = this;
$.getJSON("countries", function(err, countries){
self.setState({countries: countries});
});
},
handleClick: function(){
// every time the user does something,
// all you need to do is to update the state of the App
// which is passed as props to sub components
}
})
React.render(React.createElement(App, {}), document.body);