--- id: 5a24c314108439a4d403617c title: Use the Lifecycle Method componentWillMount challengeType: 6 isRequired: false videoUrl: '' localeTitle: 使用生命周期方法componentWillMount --- ## Description
React组件有几种特殊方法,可以在组件生命周期的特定点执行操作。这些称为生命周期方法或生命周期钩子,允许您在特定时间点捕获组件。这可以在渲染之前,更新之前,接收道具之前,卸载之前等等。以下是一些主要生命周期方法的列表: componentWillMount() componentDidMount() componentWillReceiveProps() shouldComponentUpdate() componentWillUpdate() componentDidUpdate() componentWillUnmount()接下来的几节课将介绍这些生命周期方法的一些基本用例。
## Instructions
在将组件装载到DOM时,在render()方法之前调用componentWillMount()方法。在componentWillMount()中将某些内容记录到控制台 - 您可能希望打开浏览器控制台以查看输出。
## Tests
```yml tests: - text: MyComponent应该呈现div元素。 testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(MyComponent)); return mockedComponent.find("div").length === 1; })(), "MyComponent should render a div element.");' - text: 应该在componentWillMount调用console.log 。 testString: 'assert((function() { const lifecycle = React.createElement(MyComponent).type.prototype.componentWillMount.toString().replace(/ /g,""); return lifecycle.includes("console.log("); })(), "console.log should be called in componentWillMount.");' ```
## Challenge Seed
```jsx class MyComponent extends React.Component { constructor(props) { super(props); } componentWillMount() { // change code below this line // change code above this line } render() { return
} }; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```