0
顯示動態列我想顯示取決於我通過在控制器中的值下拉選項如何在角下拉
控制器:
This.selectedColumn = label;
This.dditems = [
{
id: 1,
label: 'aLabel',
subItem: 'aSubItem'
},
{
id: 2,
label: 'bLabel',
subItem: 'bSubItem'
},
{
id: 3,
label: 'bLabel',
subItem: 'cSubItem'
}
];
在上述代碼中,我已selectedColumn作爲標籤,然後我應該在下拉菜單中顯示dditems.label
。如果我通過selectedColumn
作爲subItem
,那麼我應該在下拉菜單中顯示dditems.subItem
。
HTML:
<ul class="dropdown-menu" role="menu" aria-labelledby="single-button" >
<li role="menuitem" data-ng-repeat="item in dc.dditems">
<a>{{ item.label }}</a>
</li>
</ul>
在上述代碼中,我已硬編碼item.label
,所以現在item.label列顯示。但我想根據selectedColumn
顯示價值。
如:<a>{{ item.selectedColumn }}</a>
我怎樣才能做到這一點動態的方式?