我有一个ComponentWillReceiveProps循环的问题,因为它被调用两次,我不知道为什么,但我想这是因为Connect react-redux和react-router实现了。我怎样才能阻止这个"问题"?
componentWillReceiveProps(nextProps){
if(this.props.match.url !== nextProps.match.url){
console.log('its diferent')
}else{
console.log('its same url')
}
}
输出:
// its same url
// its same url
感谢您的关注。 PD:这不是[react + redux] [2]可能的副本,因为该线程没有正确的答案。