我是react router and react
的新手。
在这里,我有一条正在使用的路线,
history.push({
pathname: '/quiz-questions',
state: {
isReload: false
}
})
现在,在该组件中用于渲染的
在
constructor(props) {
super(props)
console.log(props.location.state.isReload)
}
使用此,我尝试打印。它正在打印。
现在,当我reload
这段时间this state variable should not contain that value
时,在这里仍在获取该值。
那么,为什么会这样?