我在使用 react-router-component 时遇到了一些麻烦。
下一个代码至少适用于http://localhost:8080/#about之类的链接:
var App = React.createClass({
render: function() {
return (
<Locations hash>
<Location path="/" handler={IndexPage} />
<Location path="/good(/*)" handler={GoodPage} />
<Location path="/about(/*)" handler={AboutPage} />
<NotFound handler={NotFoundPage} />
</Locations>
)
}
})
是否可以像下一个那样实现更深层次的路径处理:
http://localhost:8080/#about/insurance
?
文档没有关于该问题的示例。
谢谢!