const ListItem = React.createClass({
render: function() {
return <li > {
this.props.item
} < /li>;
}
});
const ToDoList = React.createClass({
render: function() {
const todoItems = this.props.items.map(item => {
return <ListItem item = {
item
} > < /ListItem>
})
return ( <
ul > {
todoItems
} < /ul>
);
}
});
//creating a basic component with no data, just a render function
const MyApp = React.createClass({
render: function() {
return ( <
div className = "well" >
<
h1 > Hello < /h1> <
ToDoList > < /ToDoList> <
/div>
);
}
});
//insert the component into the DOM
ReactDOM.render( < MyApp / > , document.getElementById('container'));
<
div id = "container" > < /div>
&#13;
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>
<div id="container"></div>
&#13;
ReactJs教程说:
如果我们想让它成为一个真正可扩展的列表,我们可以创建一个项目数组,然后通过ToDoList组件将它们传递给props,然后渲染出每个项目。我们现在就这样做。
如何传递上述代码中的项目数组?
答案 0 :(得分:8)
可以通过道具将数据传递给组件。
https://facebook.github.io/react/tutorial/tutorial.html#passing-data-through-props
在您的情况下,将通过this.props
在组件内部访问道具。
<TodoList />
使用名为items的项目,它是一个数组。在<TodoList />
内,您可以映射该数组并返回元素。
例如,在您的类的render方法中,您将返回带有项目道具的TodoList:
const myItems = [{ name: 'item 1' }, { name: 'item2' }];
function MyApp() {
return (
<TodoList items={myItems} />
);
}
然后在TodoList中映射项目
function TodoList({ items }) {
return items.map(item => (
<h1>{item.name}</h1>
));
}
答案 1 :(得分:1)
您只需设置一个名称相同的属性
<ToDoList items={myitems} />