在componentWillMount中调用componentWillReceiveProps?

时间:2017-04-17 05:14:43

标签: javascript reactjs

我是react的新用户,我想在另一个function中拨打function,例如我需要在componentWillReceiveProps中拨打componentWillMount?怎么做?

import React from 'react'
class App extends React.Component {
  componentWillMount() {
    enter code here
  }
  componentWillReceiveProps(nextProps) {
    console.log(nextProps)
  }
  render() {
    return(
      <div>
        <h>hiiiiii</h1>
      </div>
  )}
}

1 个答案:

答案 0 :(得分:2)

我认为您最好做的是创建一个方法,在该方法中您希望执行该操作并在componentWillReceiveProps和componentWillMount中调用该方法。

print "start adding test"