7

我想知道如何使用动态元素获取 Ember 中的当前路径?我知道有

@get('currentPath') 

在 applicationController 中,但这只会给我“user.show”,我也希望能够检索像“/users/1”这样的路径。我知道我可以通过 window.location.href 做到这一点,但还有其他(“Ember”)方法可以做到这一点吗?

问候彼得

4

1 回答 1

0

我不确定这是否符合 Ember 方式,因为它未在文档中列出,但控制器的目标对象既包含document.locationlastSetURL.

this.get('target').location.lastSetURL; // "/foo/1"
于 2014-12-22T03:09:20.043 回答