在有角度的ng重复中嵌套ng选项

Nested ng-option inside angular ng-repeat

本文关键字:ng 嵌套 选项      更新时间:2023-12-29

Im当前正试图将<select>嵌套在具有ng-repeatdiv

像这样的东西:

       <li ng-repeat="item in items >
            <div class="row">
                <div class="col-xs-7">
                    <span ng-bind="item.Name"></span>
                </div>
                <div class="col-xs-4 modal-body--ul--li__dropdown_container">
                    <select ng-model="typemodel" >
                        <option ng-repeat="usertype in item.userGroups"></option>
                    </select>
                </div>
                <div class="col-xs-1">
                    <a ng-click="add(item)"></a>
                </div>
            </div>
        </li>

在控制器中,im将项目添加到具有选定项目的新列表中。我还想将下拉列表中的值作为新值添加到控制器中的列表中。

$scope.add = function (item) {
    //New value with the value from the dropdown
    item.recipientType = typemodel;
    $scope.selected.push(item);
};

列表:

$scope.items = [  
     {           
        "Name":"Name1",
        "userGroups":[
            { "type": "gruop1" },
            { "type": "gruop2" },
            { "type": "group3" }            
        ]
     },
     {  
        "Name":"Name2",
        "userGroups":[
            { "type": "gruop1" },
            { "type": "gruop2" },
            { "type": "group3" }            
        ]
     }
    ]

简而言之,当我点击"添加"时,我需要从下拉列表中选择的值,即当前类型模型的值。

这就是它现在的样子,但它不起作用。我知道我必须得到正确的模型,也许可以通过$index跟踪项目列表,但在网上搜索了一整天的解决方案后,我仍然停滞不前!

感谢所有的帮助。

-谢谢!

ps。如果问题中遗漏了什么,或者需要更多的东西来解决这个问题,请发表评论。

首先,将下拉列表更改为

<select ng-options="usertype in item.userGroups" ng-model="item.recipientType">

然后,当您触发add函数时,项的属性recipientType已经设置。

$scope.add = function (item) {
    console.log(item.recipientType);
    $scope.selected.push(item);
};