选择选项内的角度ng-switch

时间:2015-02-23 07:20:11

标签: javascript angularjs ng-switch

我想将[数据演示文稿格式]应用于[下拉框]。我需要在下拉框中显示“父”,但是我需要使用[tab]显示“child”,以显示父子关系。

$ scope.itemlist将按顺序准备(即parenta,childa1,childa2,parentb,childb1,childb2)

HTML:

<div ng-controller="MyCtrl">
<h1>-- Data Presentation Format --</h1>
<ul>
    <li ng-repeat="item in itemlist">
        <div ng-switch on="item[1]">
            <div ng-switch-when="Parent">{{item[0]}}</div>
            <div ng-switch-default>&emsp;{{item[0]}}</div>
        </div>    
    </li>
</ul> 
<br/>
<h1>-- Dropdown Box --</h1>
<select ng-model="loc1" ng-options="item[0] for item in itemlist">
    <option value="">Item</option>
</select>
<br/><br/>
<h1>-- What I Got --</h1>
<select ng-model="loc2">
    <option ng-repeat="item in itemlist">
        <div ng-switch on="item[1]">
            <div ng-switch-when="Parent">{{item[0]}}</div>
            <div ng-switch-default>&emsp;{{item[0]}}</div>
        </div>    
    </option>
</select>

javascript:

var myApp = angular.module('myApp',[]);

function MyCtrl($scope) {
$scope.itemlist =
    [
    ["Unit A", "Parent"], 
    ["Room A", "Child"], 
    ["Room B", "Child"], 
    ["Room C", "Child"], 
    ["Room D", "Child"], 
    ["Room E", "Child"], 
    ["Unit 1", "Parent"],
    ["Room 1", "Child"], 
    ["Room 2", "Child"], 
    ["Room 3", "Child"]
    ];
}

JsFiddle:http://jsfiddle.net/HB7LU/11174/

1 个答案:

答案 0 :(得分:0)

我认为你不能在选项元素中使用,因为它没有呈现为html。如果你坚持使用元素而不是jQuery下拉(基本上是a),那么我建议使用破折号或类似来说明父/子关系。

http://jsfiddle.net/HB7LU/11177/

我使用放在范围

上的格式化功能解决了它
$scope.formattedItem = function(item) {
    return item[1] === 'Parent' ? item[0] : '--' + item[0];


<select ng-model="loc2">
    <option ng-repeat="item in itemlist" >
        {{formattedItem(item)}}
    </option>
</select>