認証を必要とするいくつかのコンポーネントを備えた、かなり基本的なログイン設定 (以下のコード) があります。http://localhost:8000/に移動すると、 http://localhost:8000/loginにリダイレクトされ、すべて問題ありません。その後ログインすると、 http://localhost:8000/に戻り、メイン コンポーネントが表示されます。
ただし、http://localhost:8000/loginに直接移動すると、「/login を取得できません」と表示されます。「about」コンポーネントについても同じことが言えます。ポンド記号を追加すると機能します: 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'));