我有一个 json 文件,其中包含一组代表人的数据。
我想为每个人制作一个组件。我应该在我的渲染函数中创建一个组件并循环遍历我的数据,还是应该在我的 ReactDOM.render 函数之外循环并在每个循环中传递特定的数据片段?
我应该这样做:
var PersonBox = React.createClass({
render: function() {
var person = this.props.data.map(function(person, index) {
return <div id="person" key={index}>
// person stuff here
</div>
});
return (
<div>
{person}
</div>
);
}
ReactDOM.render(<PersonBox data={mydata} />, document.getElementById('container'));
或者我应该这样做:
var PersonBox = React.createClass({
render: function() {
return (
<div>
// person stuff
</div>
);
}
mydata.map(function(person, index) {
ReactDOM.render(<PersonBox data={person} />, document.getElementById('container'));
}