我正在尝试读取的值window.location.state.endButtonEnabled来检查未定义。但是当我实际继续检查 undefined 时,我在 if 条件下得到一个 undefined 错误。在以下代码中:
constructor(props){
super(props);
if(window.location.state.endButtonEnabled !== undefined){
console.log('endButtonEnabled is: '+ window.location.state.endButtonEnabled );
//Do Something
}
else{
window.location.state = {endButtonEnabled: true};
}
}
考虑控制台中的错误:
有什么建议?我正在使用最新版本的 ReactJS。
万千封印
暮色呼如
相关分类