如果我的路线文件看起来像这样
'/posts/:_id': {
to: 'somePage',
and: function(id) { Session.set('someId', id); } }
我在我的 html 文件中使用它,就像{{somePagePath this}}
我知道的somePagePath
等于/post/
. 但是this
在这种情况下意味着什么?
我可以换个方式写吗?
它是绑定我的路由参数的对象吗?所以这个,是 ? 的简写this._id
?