Router.map ->
@route '/foo'
Template.foo.events
'click something': ->
Router.current().params #is empty array
Router.go '/foo', thenGoTo: 'bar'
我想访问thenGoTo: 'bar'
对象。
我可以Router.go 'foo', {} {query: 'thenGoTo=bar'}
然后解析Router.current().url
,但我要保留一个干净的网址。