freeCodeCamp/curriculum/challenges/chinese/03-front-end-libraries/react/use-the-lifecycle-method-co...

2.4 KiB
Raw Blame History

id title challengeType isRequired videoUrl localeTitle
5a24c314108439a4d403617c Use the Lifecycle Method componentWillMount 6 false 使用生命周期方法componentWillMount

Description

React组件有几种特殊方法可以在组件生命周期的特定点执行操作。这些称为生命周期方法或生命周期钩子允许您在特定时间点捕获组件。这可以在渲染之前更新之前接收道具之前卸载之前等等。以下是一些主要生命周期方法的列表 componentWillMount() componentDidMount() componentWillReceiveProps() shouldComponentUpdate() componentWillUpdate() componentDidUpdate() componentWillUnmount()接下来的几节课将介绍这些生命周期方法的一些基本用例。

Instructions

在将组件装载到DOM时render()方法之前调用componentWillMount()方法。在componentWillMount()中将某些内容记录到控制台 - 您可能希望打开浏览器控制台以查看输出。

Tests

tests:
  - text: <code>MyComponent</code>应该呈现<code>div</code>元素。
    testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(MyComponent)); return mockedComponent.find("div").length === 1; })(), "<code>MyComponent</code> should render a <code>div</code> element.");'
  - text: 应该在<code>componentWillMount</code>调用<code>console.log</code> 。
    testString: 'assert((function() { const lifecycle = React.createElement(MyComponent).type.prototype.componentWillMount.toString().replace(/ /g,""); return lifecycle.includes("console.log("); })(), "<code>console.log</code> should be called in <code>componentWillMount</code>.");'

Challenge Seed

class MyComponent extends React.Component {
  constructor(props) {
    super(props);
  }
  componentWillMount() {
    // change code below this line

    // change code above this line
  }
  render() {
    return <div />
  }
};

After Test

console.info('after the test');

Solution

// solution required