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
?
ドキュメントには、この問題に関する例はありません。
ありがとう!