我有一个相当基本的登录设置(下面的代码),其中有一些组件需要身份验证。当我导航到http://localhost:8000/时,它会重定向到http://localhost:8000/login,一切都很好。如果我然后登录,它将返回http://localhost:8000/并显示我的主要组件。
但是,当我直接导航到http://localhost:8000/login时,它会说"无法获取/登录"。与我的关于"关于"零件。当我添加一个英镑符号时,它确实有效:http://localhost:8000/#/login。谁能解释一下发生了什么?
var React = require('react');
var Main = require('./components/main');
var Login = require('./components/login');
var About = require('./components/about');
var SessionStore = require('./stores/session-store')
import createBrowserHistory from 'history/lib/createBrowserHistory';
import { Router, Route, Link, History, IndexRoute } from 'react-router';
var App = React.createClass({
render: function() {
return <div>
{this.props.children}
</div>
}
});
function requireAuth(nextState, replaceState) {
if(!SessionStore.isLoggedIn()){
replaceState({ nextPathname: nextState.location.pathname }, '/login');
}
}
function redirectIfLoggedIn(nextState, replaceState){
if(SessionStore.isLoggedIn()){
replaceState({ nextPathname: nextState.location.pathname }, '/');
}
}
var routes = (
<Router history={createBrowserHistory()}>
<Route path="/" component={App}>
<IndexRoute component={Main} onEnter={requireAuth}/>
<Route path="login" component={Login} onEnter={redirectIfLoggedIn} />
<Route path="about" component={About} onEnter={requireAuth} />
</Route>
</Router>
)
React.render(routes, document.querySelector('.container'));
答案 0 :(得分:1)
快速回答,http://localhost:8000/#/login
正在浏览器的javascript应用中运行,因此应用程序由快递网络服务器从/
提供,因此{{1 (app)/
和#/login
不是从服务器请求任何内容,而是JS应用程序中的路由(/#/about
)来呈现各种组件。当您直接输入react-routes
时,它必须查询快速网络服务器,但您没有设置任何快速服务器路由,除了在根{{1}处为该应用提供服务的路由}。
所以它归结为/login
,相关问题询问如何删除它,但请注意,自10月15日/
从版本0.13更改为1.0更改了API,所以在阅读示例时要小心,以了解版本
How to stop /#/ in browser with react-router?