82

我正在尝试从对象数组生成一组复选框。我的目标是让复选框动态地将它们的 ng-model 映射到将提交到数组中的新对象的属性。

我的想法是

<li ng-repeat="item in items">
    <label>{{item.name}}</label>
    <input type="checkbox" ng-model="newObject.{{item.name}}">
</li>

这不起作用,可以在这个 JSFiddle 上看到:

http://jsfiddle.net/GreenGeorge/NKjXB/2/

有人可以帮忙吗?

4

5 回答 5

146

这应该会给你想要的结果:

<input type="checkbox" ng-model="newObject[item.name]">

这是一个工作 plunk:http ://plnkr.co/edit/ALHQtkjiUDzZVtTfLIOR?p=preview

于 2013-01-06T15:46:50.713 回答
23

编辑 正如在使用 ng-change 的评论中正确指出的那样,需要事先存在“虚拟”ng-model。然而,应该注意的是,显然在 1.3 中,框架已经提供了所需的选项。请查看下面的https://stackoverflow.com/a/28365515/3497830/编辑

以防你像我一样在一个简单的案例中遇到更复杂的任务,这是我想出的将任意表达式动态绑定到 ng-model 的解决方案:http ://plnkr.co/edit/ccdJTm0zBnqjntEQfAfx?p =预览

方法:我创建了一个指令 dynamicModel,它采用标准的角度表达式,对其进行评估并通过 ng-model 和 $compile 将结果链接到范围。

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

app.controller('MainCtrl', function($scope) {
  $scope.data = {};
  $scope.testvalue = 'data.foo';
  $scope.eval = $scope.$eval;
});

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

app.controller('MainCtrl', function($scope) {
  $scope.data = {};
  $scope.testvalue = 'data.foo';
  $scope.eval = $scope.$eval;
});

app.directive('dynamicModel', ['$compile', function ($compile) {
    return {
        'link': function(scope, element, attrs) {
            scope.$watch(attrs.dynamicModel, function(dynamicModel) {
                if (attrs.ngModel == dynamicModel || !dynamicModel) return;

                element.attr('ng-model', dynamicModel);
                if (dynamicModel == '') {
                    element.removeAttr('ng-model');
                }

                // Unbind all previous event handlers, this is 
                // necessary to remove previously linked models.
                element.unbind();
                $compile(element)(scope);
            });
        }
    };
}]);

用法很简单 dynamic-model="angularExpression" 其中 angularExpression 生成一个字符串,用作 ng-model 的表达式。

我希望这可以避免有人不得不提出这个解决方案的麻烦。

问候,贾斯图斯

于 2014-07-02T08:00:09.020 回答
6

使用 Angular 1.3,您可以使用ng-model-options指令来动态分配模型,或绑定到表达式。

这是一个 plunkr:http ://plnkr.co/edit/65EBiySUc1iWCWG6Ov98?p=preview

<input type="text" ng-model="name"><br>
<input type="text" ng-model="user.name" 
ng-model-options="{ getterSetter: true }">

更多信息在ngModelOptions这里:https ://docs.angularjs.org/api/ng/directive/ngModelOptions

于 2015-02-06T12:09:51.113 回答
1

这是我支持更深层次表达的方法,例如'model.level1.level2.value'

<input class="form-control" ng-model="Utility.safePath(model, item.modelPath).value">

其中 item.modelPath = 'level1.level2' 和 Utility(model, 'level1.level2') 是返回 model.level1.level2 的效用函数

于 2015-10-08T08:33:01.937 回答
0

<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>

    <div ng-app="myApp" ng-controller="myCtrl">
        <form name="priceForm" ng-submit="submitPriceForm()">
            <div ng-repeat="x in [].constructor(9) track by $index">
                <label>
                    Person {{$index+1}} <span class="warning-text">*</span>
                </label>
                <input type="number" class="form-control" name="person{{$index+1}}" ng-model="price['person'+($index+1)]" />

            </div>
            <button>Save</button>
        </form>
    </div>

    <script>
        var app = angular.module('myApp', []);
        app.controller('myCtrl', function ($scope) {
            $scope.price = [];
            $scope.submitPriceForm = function () {
                //objects be like $scope.price=[{person1:value},{person2:value}....]
                console.log($scope.price);
            }
        });
    </script>
</body>
</html>

于 2017-07-13T18:24:17.187 回答