e.g:
this.onClick = function(){
// current path is '#/list'
// i want to go to '#/detail' by invoke an api
//how could i do?
}
到目前为止,我还没有在react-router中找到任何可用的api。
答案 0 :(得分:0)
使用您可能已在React Router中使用的History
模块。然后你可以这样做:
this.props.history.push('/yourPath');
您可以在Navigating Outside Components文档中阅读更多内容。另请参阅Navigating section in CHANGES。