Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有时,在 Ember.js 中的 url 的最后部分获取动态段更难。不能直接调用:dynamic_segment_name。
:dynamic_segment_name
你可以做:
window.location.href.split('/').pop()
直接得到它。