Files
freeCodeCamp/curriculum/challenges/chinese/03-front-end-libraries/react/pass-an-array-as-props.chinese.md
Oliver Eyton-Williams 61460c8601 fix: insert blank line after ```
search and replace ```\n< with ```\n\n< to ensure there's an empty line
before closing tags
2020-08-16 04:45:20 +05:30

4.7 KiB
Raw Blame History

id, title, challengeType, isRequired, videoUrl, localeTitle
id title challengeType isRequired videoUrl localeTitle
5a24c314108439a4d403616a Pass an Array as Props 6 false 将数组作为道具传递

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

tests:
  - text: <code>ToDo</code>组件应返回单个外部<code>div</code> 。
    testString: assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.children().first().type() === 'div'; })());
  - text: <code>ToDo</code>组件的第三个子<code>ToDo</code>应该是<code>List</code>组件的实例。
    testString: assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.children().first().childAt(2).name() === 'List'; })());
  - text: <code>ToDo</code>组件的第五个子<code>ToDo</code>应该是<code>List</code>组件的一个实例。
    testString: assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.children().first().childAt(4).name() === 'List'; })());
  - text: <code>List</code>组件的两个实例都应该有一个名为<code>tasks</code>的属性,而<code>tasks</code>应该是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); })());
  - text: 表示今天任务的第一个<code>List</code>组件应该有2个或更多项。
    testString: assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.find('List').get(0).props.tasks.length >= 2; })());
  - text: 表示明天任务的第二个<code>List</code>组件应该有3个或更多项。
    testString: assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.find('List').get(1).props.tasks.length >= 3; })());
  - text: '<code>List</code>组件应该将<code>p</code>标记中的<code>tasks</code> prop的值呈现为以逗号分隔的列表例如<code>walk dog, workout</code> 。'
    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(', '); })());

Challenge Seed

const List= (props) => {
  { /* change code below this line */ }
  return <p>{}</p>
  { /* change code above this line */ }
};

class ToDo extends React.Component {
  constructor(props) {
    super(props);
  }
  render() {
    return (
      <div>
        <h1>To Do Lists</h1>
        <h2>Today</h2>
        { /* change code below this line */ }
        <List/>
        <h2>Tomorrow</h2>
        <List/>
        { /* change code above this line */ }
      </div>
    );
  }
};

After Test

console.info('after the test');

Solution

// solution required

/section>