本文介绍了如何确定Ember 2中的活动子路线?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
例如,说我有
- 主从设置(小部件
路线
,带有嵌套的Widget路径) - 在我建模的主模板中,它是
Widget.all
将其列为{{link-to}}
的列表,每个列表都转换为widgets.widget
路线
- a master-detail setup (a Widgets
route
, with a nested Widget route) - in the master template I model, which is
Widget.all
to a component that lays it out as a list of{{link-to}}
each of which transitions to thewidgets.widget
route
...然后在灰烬2中建议使用哪种方式来告诉该组件所选的小部件是什么,以便它可以突出显示其链接?
...then what is/are the recommended way(s) in ember 2 to tell that component what the selected widget is, so it can highlight its link?
推荐答案
Ember的路由基础结构会自动处理将活动类添加到链接的情况(前提是您正在使用链接)
Ember's routing infrastructure automatically handles adding active classes to links provided you're using the link-to helper.
请参见
如果您想使用锚标签之外的标签,像li一样,请参阅:
If you want to use a tag besides an anchor tag, like an li, see: Create a <li class="active"> around an active {{linkTo}}
这篇关于如何确定Ember 2中的活动子路线?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!