URL が で終わるのはなぜですか? I call FlowRouter.go(/score/ + this.props.courseId)
it should not end with ?. 私は流星に反応して使用しています。
http://localhost:3000/score/k5QKvkFet5wteAg2r?
<----クエスチョンマーク?
私のデバッグに表示されます
Navigated to http://localhost:3000/score/k5QKvkFet5wteAg2r?
ルーター.jsx
FlowRouter.route("/score/:courseId/", {
name: "Score",
action (params) {
renderMainLayoutWith(<Score courseId={params.courseId}/>)
}
})