this.props.history.push
在導航時,您可以將傳遞道具傳遞給歷史對象
this.props.history.push({
pathname: '/template',
search: '?query=abc',
state: { detail: response.data }
})
Link
或類似的鏈接組件
My Link
訪問通過的道具
然後在用/template路由呈現的組件中,可以訪問通過的道具
this.props.location.state.detail
另外請記住,使用道具的歷史或位置對象時,您需要連接組件withRouter。
按照Docs:
withRouter
您可以訪問歷史記錄對象的屬性,並