在react-router中,如何直接从代码api调用链接?

时间:2015-12-15 07:16:43

标签: react-router

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。

1 个答案:

答案 0 :(得分:0)

使用您可能已在React Router中使用的History模块。然后你可以这样做:

this.props.history.push('/yourPath');

您可以在Navigating Outside Components文档中阅读更多内容。另请参阅Navigating section in CHANGES