qq_无根草_0
2018-05-28 15:58
shouldComponentUpdate:function(newPros,newState){
if(newState.disnum < 5){
return true;
}else{
console.log("退出");
ReactDOM.unmountComponentAtNode(destination);
return false;
}
},
componentWillUnmount:function(){
console.log('willunmount')
return;
}
前面都是正确的,到了unmount这块就不行了。报destination没有定义:destination is not defined,怎么破???
看看完整代码就知道了。
destination 换成 document.getElementById("container"); 即可。但是还是不知道为什么destination报错
React组件
26078 学习 · 27 问题
相似问题