如何在铁路由器中获取模板的路径

时间:2014-10-29 09:12:29

标签: meteor iron-router

如何在Meteor 1.0的新版铁路由器中获取模板的路径?

在我这样做之前获取当前的相对路径:

Router.current().path

现在,从meteor 1.0开始,似乎已删除了path属性。

如何在铁路由器中获取模板的相对路径?

2 个答案:

答案 0 :(得分:9)

Router.current().path

这已移至Router.current().location.get().path

有关位置对象的详细信息,请参阅iron:location包。

https://github.com/EventedMind/iron-location

(由iron:router自动添加。)

答案 1 :(得分:4)

这可能会对您有所帮助:Router.current().originalUrlRouter.current().url