gpt4 book ai didi

reactjs - react 路由器 2.0 : programmatically change route (URL not updated)

转载 作者:行者123 更新时间:2023-12-03 13:34:00 30 4
gpt4 key购买 nike

我在使用react-router 2.0以编程方式路由时遇到一些问题

文档说要使用

this.context.router.push('/test');

导航正确,但即使其他页面 (/test) 中的组件已呈现且路由更改成功,我的浏览器上的 URL 仍保持不变并且不会更新。

如何获取要更新的 URL?

最佳答案

this.props.history.push('/some/path'); 已弃用。

我们现在应该使用以下内容:

import { browserHistory } from 'react-router'

然后,无论您想要导航到哪里(代码中的某个位置),请执行以下操作:

browserHistory.push('/some/path');

这就是我配置处理路由机制的 routes.jsx 文件的方式:

//Require react.
import React from "react";
//Require routing variables.
import { Router, Route, IndexRoute, browserHistory } from "react-router";
//Example components.
import MainComponent from "../containers/main.js";
import HomeComponent from "../containers/home.js";

var Routes = (
<Router history={browserHistory}>
<Route path="/" component={MainComponent}>
<IndexRoute component={HomeComponent} />
<Route path="/example" component={ExampleComponent} />
</Route>
</Router>
);

module.exports = Routes;

我正在使用 webpack。在 webpack 中,我也有这个:

... bla ... bla... bla ...
module: {

},
devServer: {
historyApiFallback: true
},
plugins: [

]
... bla ... bla... bla ...
<小时/>

2018 年 1 月 4 日更新:

[免责声明:我现在使用 TypeScript 而不是 ES6]

这就是我现在使用 react ^15.6.1react-dom ^15.6.1 完成工作的方式

index.tsx

import * as React from "react";
import * as ReactDOM from "react-dom";
import Routes from "./configuration/routes";
ReactDOM.render(
Routes,
document.getElementById("app")
);

routes.tsx

import * as React from "react";
import { BrowserRouter, HashRouter } from 'react-router-dom';
import App from "../containers/App";

let Routes: any = (
// <BrowserRouter>
// <App someDefaultValue/>
// </BrowserRouter>

// HashRouter adds the # in front of our paths :) - check the browser's URL to see.
<HashRouter>
<App someDefaultValue/>
</HashRouter>
);
export default Routes;

App.tsx

import * as React from "react";
import { Switch, Route } from 'react-router-dom'

import Header from "../components/header-component/header";
import Main from "../components/main-component/main";
import Footer from "../components/footer-component/footer";

interface IComponentProps { someDefaultValue: boolean; }
interface IComponentState { loading: boolean; }

class App extends React.Component<IComponentProps, IComponentState> {
constructor() {
super();

this.state = {
loading: true
};
}

render() {
const { loading } = this.state;
if(loading) {
//Render something or something else..
}

return (
<div className="app-container">
<Switch>
<Route path='/' component={Header}/>
</Switch>
<Switch>
<Route path='/' component={Main}/>
</Switch>
<Switch>
<Route path='/' component={Footer}/>
</Switch>
</div>
);
}
}
export default App;

然后,您可以使用类似的方法在单击时在菜单项上放置导航(或其他...)menu.tsx

import * as React from "react";
import { Link } from 'react-router-dom'

class Menu extends React.Component {
render() {
return (
<div>
<Link to='/home'>
<div>Home</div>
</Link>
<Link to='/about'>
<div>About</div>
</Link>
</div>);
}
}
export default Menu;

“以编程方式”导航:

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

我使用 HashRouter 的原因是因为我注意到 BrowserRouter 当人们保存“书签”等时它会中断。HashRouter 允许我的用户无缝导航我的网站:)

如果我需要展示 BrowserRouter 的工作原理,我可以 - 只需询问 - 它几乎是相同的 - 但您会看到它仅在您在网站内导航时才起作用。当您从外部导航时,错误就开始发生。

哦,是的,差点忘了 - 我没有真正测试过这个,但我认为我们仍然需要

devServer: { historyApiFallback: true } 

在我们的webpack.config.js中?不知道:)...但它现在就在我的里面...

关于reactjs - react 路由器 2.0 : programmatically change route (URL not updated),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36187134/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com