0
例如: -在react-router中,如何直接從代碼API調用鏈接?
this.onClick = function(){
// current path is '#/list'
// i want to go to '#/detail' by invoke an api
//how could i do?
}
到目前爲止,我還沒有發現在反應路由器任何可用的API。
例如: -在react-router中,如何直接從代碼API調用鏈接?
this.onClick = function(){
// current path is '#/list'
// i want to go to '#/detail' by invoke an api
//how could i do?
}
到目前爲止,我還沒有發現在反應路由器任何可用的API。
使用History
模塊,你可能已經與陣營路由器使用。然後,你可以這樣做:
this.props.history.push('/yourPath');
你可以閱讀更多的Navigating Outside Components文檔。另請參閱Navigating section in CHANGES。