2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
id: 5a24c314108439a4d4036167
|
2020-12-16 00:37:30 -07:00
|
|
|
|
title: 渲染 class 组件为 Dom 树
|
2018-10-10 18:03:03 -04:00
|
|
|
|
challengeType: 6
|
2020-09-18 00:13:42 +08:00
|
|
|
|
forumTopicId: 301404
|
2021-01-13 03:31:00 +01:00
|
|
|
|
dashedName: render-a-class-component-to-the-dom
|
2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --description--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
你可能还记得在早期挑战中使用 ReactDOM API 将 JSX 元素渲染到 DOM,这与渲染 React 组件的过程十分相似。过去的几个挑战主要针对组件和组合,因此渲染是在幕后为你完成的。但是,如果不调用 ReactDOM API,你编写的任何 React 代码都不会渲染到 DOM。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
以下是语法的复习:`ReactDOM.render(componentToRender, targetNode)`。第一个参数是要渲染的 React 组件。第二个参数是要在其中渲染该组件的 DOM 节点。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
React 组件传递到`ReactDOM.render()`与 JSX 元素略有不同。对于 JSX 元素,你传入的是要渲染的元素的名称。但是,对于 React 组件,你需要使用与渲染嵌套组件相同的语法,例如`ReactDOM.render(<ComponentToRender />, targetNode)`。你可以将此语法用于ES6类组件和函数组件。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --instructions--
|
2020-09-18 00:13:42 +08:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
在后台为你定义了`Fruits`和`Vegetables`组件。将两个组件渲染为`TypesOfFood`组件的子组件,然后将`TypesOfFood`渲染到 DOM 节点,在这个挑战中,请渲染到 id 为`challenge-node`的`div`中。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --hints--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`TypesOfFood`组件应该返回单个`div`元素。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
|
|
|
|
assert(
|
|
|
|
|
(function () {
|
|
|
|
|
const mockedComponent = Enzyme.mount(React.createElement(TypesOfFood));
|
|
|
|
|
return mockedComponent.children().type() === 'div';
|
|
|
|
|
})()
|
|
|
|
|
);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`TypesOfFood`组件应该在`h1`元素之后渲染`Fruits`组件。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
|
|
|
|
assert(
|
|
|
|
|
(function () {
|
|
|
|
|
const mockedComponent = Enzyme.mount(React.createElement(TypesOfFood));
|
|
|
|
|
return mockedComponent.children().childAt(1).name() === 'Fruits';
|
|
|
|
|
})()
|
|
|
|
|
);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`TypesOfFood`组件应该在`Fruits`组件之后渲染`Vegetables`组件。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
|
|
|
|
assert(
|
|
|
|
|
(function () {
|
|
|
|
|
const mockedComponent = Enzyme.mount(React.createElement(TypesOfFood));
|
|
|
|
|
return mockedComponent.children().childAt(2).name() === 'Vegetables';
|
|
|
|
|
})()
|
|
|
|
|
);
|
|
|
|
|
```
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`TypesOfFood`组件应该渲染到 id 为`challenge-node`的`div`中。
|
2020-09-18 00:13:42 +08:00
|
|
|
|
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```js
|
2020-12-16 00:37:30 -07:00
|
|
|
|
assert(
|
|
|
|
|
(function () {
|
|
|
|
|
const html = document.getElementById('challenge-node').childNodes[0]
|
|
|
|
|
.innerHTML;
|
2020-09-18 00:13:42 +08:00
|
|
|
|
return (
|
2020-12-16 00:37:30 -07:00
|
|
|
|
html.includes(
|
|
|
|
|
'<div><h2>Fruits:</h2><h4>Non-Citrus:</h4><ul><li>Apples</li><li>Blueberries</li><li>Strawberries</li><li>Bananas</li></ul><h4>Citrus:</h4><ul><li>Lemon</li><li>Lime</li><li>Orange</li><li>Grapefruit</li></ul></div>'
|
|
|
|
|
) &&
|
|
|
|
|
html.includes(
|
|
|
|
|
'<div><h2>Vegetables:</h2><ul><li>Brussel Sprouts</li><li>Broccoli</li><li>Squash</li></ul></div>'
|
|
|
|
|
)
|
2020-09-18 00:13:42 +08:00
|
|
|
|
);
|
2020-12-16 00:37:30 -07:00
|
|
|
|
})()
|
|
|
|
|
);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
2020-08-13 17:24:35 +02:00
|
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
|
# --seed--
|
|
|
|
|
|
|
|
|
|
## --before-user-code--
|
|
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
|
const Fruits = () => {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<h2>Fruits:</h2>
|
|
|
|
|
<h4>Non-Citrus:</h4>
|
|
|
|
|
<ul>
|
|
|
|
|
<li>Apples</li>
|
|
|
|
|
<li>Blueberries</li>
|
|
|
|
|
<li>Strawberries</li>
|
|
|
|
|
<li>Bananas</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<h4>Citrus:</h4>
|
|
|
|
|
<ul>
|
|
|
|
|
<li>Lemon</li>
|
|
|
|
|
<li>Lime</li>
|
|
|
|
|
<li>Orange</li>
|
|
|
|
|
<li>Grapefruit</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
const Vegetables = () => {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<h2>Vegetables:</h2>
|
|
|
|
|
<ul>
|
|
|
|
|
<li>Brussel Sprouts</li>
|
|
|
|
|
<li>Broccoli</li>
|
|
|
|
|
<li>Squash</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## --seed-contents--
|
|
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
|
class TypesOfFood extends React.Component {
|
|
|
|
|
constructor(props) {
|
|
|
|
|
super(props);
|
|
|
|
|
}
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<h1>Types of Food:</h1>
|
|
|
|
|
{/* Change code below this line */}
|
|
|
|
|
|
|
|
|
|
{/* Change code above this line */}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Change code below this line
|
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --solutions--
|
|
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
|
```jsx
|
|
|
|
|
class TypesOfFood extends React.Component {
|
|
|
|
|
constructor(props) {
|
|
|
|
|
super(props);
|
|
|
|
|
}
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<h1>Types of Food:</h1>
|
|
|
|
|
{/* Change code below this line */}
|
|
|
|
|
<Fruits />
|
|
|
|
|
<Vegetables />
|
|
|
|
|
{/* Change code above this line */}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Change code below this line
|
|
|
|
|
ReactDOM.render(<TypesOfFood />, document.getElementById('challenge-node'));
|
|
|
|
|
```
|