在我的反应应用程序中,如果我发送类似的查询参数localhost:8000/?param1=value1
,它会转换为localhost:8000/?param1=value1#/
. 我是新手,不太确定它是如何工作的。正在使用 ConnectedRouter:
<Provider store={store}>
<ConnectedRouter history={hashHistory}>
<AppRouter />
</ConnectedRouter>
</Provider>
const AppRouter = () => (
<Switch>
<Route ...... />
<Route ...... />
.....
</Switch>
);