我愿意为我的应用程序使用 React-router,我首先尝试文档中给出的示例,我在下面复制了该示例。现在,当我转到 时localhost:3000/
,我会按预期看到“应用程序”,但所有其他页面,例如localhost:3000/inbox
返回“无法获取/收件箱”。我在这里错过了什么?
var About = React.createClass({
render: function () {
return <h2>About</h2>;
}});
var Inbox = React.createClass({
render: function () {
return <h2>Inbox</h2>;
}});
var App = React.createClass({
render () {
return (
<div><h1>App</h1>
<RouteHandler/>
</div>
)}});
var routes = (
<Route path='/' handler={App}>
<Route path="about" handler={About}/>
<Route path="inbox" handler={Inbox}/>
</Route>
);