--- id: 5a24c314108439a4d403616a title: Pass an Array as Props challengeType: 6 isRequired: false videoUrl: '' localeTitle: 将数组作为道具传递 --- ## Description
最后一项挑战演示了如何将信息从父组件传递到子组件作为props或属性。这个挑战着眼于如何将数组作为props传递。要将数组传递给JSX元素,必须将其视为JavaScript并用大括号括起来。
<为父级>
<ChildComponent colors = {[“green”,“blue”,“red”]} />
</为父级>
然后子组件可以访问数组属性colors 。访问属性时可以使用诸如join()类的数组方法。 const ChildComponent = (props) => <p>{props.colors.join(', ')}</p>这会将所有colors数组项连接成逗号分隔的字符串并生成: <p>green, blue, red</p>稍后,我们将了解在React中呈现数据数组的其他常用方法。
## Instructions
代码编辑器中有ListToDo组件。从ToDo组件渲染每个List ,传入分配给待办任务数组的tasks属性,例如["walk dog", "workout"] 。然后在List组件中访问此tasks数组,在p元素中显示其值。使用join(", ")以逗号分隔列表的形式显示p元素中的props.tasks数组。今天的列表应该至少有2个任务,明天应该至少有3个任务。
## Tests
```yml tests: - text: ToDo组件应返回单个外部div 。 testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.children().first().type() === "div"; })(), "The ToDo component should return a single outer div.");' - text: ToDo组件的第三个子ToDo应该是List组件的实例。 testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.children().first().childAt(2).name() === "List"; })(), "The third child of the ToDo component should be an instance of the List component.");' - text: ToDo组件的第五个子ToDo应该是List组件的一个实例。 testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.children().first().childAt(4).name() === "List"; })(), "The fifth child of the ToDo component should be an instance of the List component.");' - text: List组件的两个实例都应该有一个名为tasks的属性,而tasks应该是array类型。 testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return Array.isArray(mockedComponent.find("List").get(0).props.tasks) && Array.isArray(mockedComponent.find("List").get(1).props.tasks); })(), "Both instances of the List component should have a property called tasks and tasks should be of type array.");' - text: 表示今天任务的第一个List组件应该有2个或更多项。 testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.find("List").get(0).props.tasks.length >= 2; })(), "The first List component representing the tasks for today should have 2 or more items.");' - text: 表示明天任务的第二个List组件应该有3个或更多项。 testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.find("List").get(1).props.tasks.length >= 3; })(), "The second List component representing the tasks for tomorrow should have 3 or more items.");' - text: 'List组件应该将p标记中的tasks prop的值呈现为以逗号分隔的列表,例如walk dog, workout 。' testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.find("p").get(0).props.children === mockedComponent.find("List").get(0).props.tasks.join(", ") && mockedComponent.find("p").get(1).props.children === mockedComponent.find("List").get(1).props.tasks.join(", "); })(), "The List component should render the value from the tasks prop in the p tag as a comma separated list, for example walk dog, workout.");' ```
## Challenge Seed
```jsx const List= (props) => { { /* change code below this line */ } return

{}

{ /* change code above this line */ } }; class ToDo extends React.Component { constructor(props) { super(props); } render() { return (

To Do Lists

Today

{ /* change code below this line */ }

Tomorrow

{ /* change code above this line */ }
); } }; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```