我是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>
)}
}
答案 0 :(得分:2)
我认为您最好做的是创建一个方法,在该方法中您希望执行该操作并在componentWillReceiveProps和componentWillMount中调用该方法。
print "start adding test"