91

我想用一些动态问题填充一个表单(在这里小提琴):

<div ng-app ng-controller="QuestionController">
    <ul ng-repeat="question in Questions">
        <li>
            <div>{{question.Text}}</div>
            <select ng-model="Answers['{{question.Name}}']" ng-options="option for option in question.Options">
            </select>
        </li>
    </ul>

    <a ng-click="ShowAnswers()">Submit</a>
</div>
​
function QuestionController($scope) {
    $scope.Answers = {};

    $scope.Questions = [
    {
        "Text": "Gender?",
        "Name": "GenderQuestion",
        "Options": ["Male", "Female"]},
    {
        "Text": "Favorite color?",
        "Name": "ColorQuestion",
        "Options": ["Red", "Blue", "Green"]}
    ];

    $scope.ShowAnswers = function()
    {
        alert($scope.Answers["GenderQuestion"]);
        alert($scope.Answers["{{question.Name}}"]);
    };
}​

一切正常,除了模型实际上是 Answers["{{question.Name}}"],而不是评估的 Answers["GenderQuestion"]。如何动态设置该模型名称?

4

5 回答 5

122

http://jsfiddle.net/DrQ77/

您可以简单地将 javascript 表达式放入ng-model.

于 2012-09-23T21:55:17.787 回答
32

您可以使用类似的东西scopeValue[field],但如果您的字段在另一个对象中,您将需要另一个解决方案。

要解决各种情况,您可以使用此指令:

this.app.directive('dynamicModel', ['$compile', '$parse', function ($compile, $parse) {
    return {
        restrict: 'A',
        terminal: true,
        priority: 100000,
        link: function (scope, elem) {
            var name = $parse(elem.attr('dynamic-model'))(scope);
            elem.removeAttr('dynamic-model');
            elem.attr('ng-model', name);
            $compile(elem)(scope);
        }
    };
}]);

html示例:

<input dynamic-model="'scopeValue.' + field" type="text">
于 2015-08-19T13:03:51.253 回答
13

我最终做的是这样的:

在控制器中:

link: function($scope, $element, $attr) {
  $scope.scope = $scope;  // or $scope.$parent, as needed
  $scope.field = $attr.field = '_suffix';
  $scope.subfield = $attr.sub_node;
  ...

所以在模板中我可以使用完全动态的名称,而不仅仅是在某个硬编码元素下(比如在你的“答案”案例中):

<textarea ng-model="scope[field][subfield]"></textarea>

希望这可以帮助。

于 2013-04-12T18:43:22.083 回答
3

为了使@abourget 提供的答案更完整,以下代码行中的 scopeValue[field] 的值可能是未定义的。这会在设置子字段时导致错误:

<textarea ng-model="scopeValue[field][subfield]"></textarea>

解决此问题的一种方法是添加属性 ng-focus="nullSafe(field)",因此您的代码如下所示:

<textarea ng-focus="nullSafe(field)" ng-model="scopeValue[field][subfield]"></textarea>

然后在控制器中定义 nullSafe(field),如下所示:

$scope.nullSafe = function ( field ) {
  if ( !$scope.scopeValue[field] ) {
    $scope.scopeValue[field] = {};
  }
};

这将保证在将任何值设置为 scopeValue[field][subfield] 之前没有未定义 scopeValue[field]。

注意:您不能使用 ng-change="nullSafe(field)" 来获得相同的结果,因为 ng-change 发生在 ng-model 更改之后,如果 scopeValue[field] 未定义,则会引发错误。

于 2014-06-28T23:40:19.703 回答
1

或者你可以使用

<select [(ngModel)]="Answers[''+question.Name+'']" ng-options="option for option in question.Options">
        </select>
于 2019-10-13T00:00:11.827 回答