Angularjs:更新ng-model时选择不更新

时间:2014-10-06 07:25:44

标签: javascript angularjs angular-ngmodel

我创建了以下示例,以便您可以准确了解正在发生的事情:http://jsfiddle.net/8t2Ln/101/

如果我使用ng-options,会发生同样的事情。我有一个不同的理由这样做,但为了简化示例留下那部分。

正如您所看到的,它默认有两个选项。我在选择旁边显示ng-model的选定值,这样你就可以看到它是什么。当您使用顶部部分添加第三个选项时,它将值设置为该新选项的值,如选择旁边显示的ng-model值所示,但select本身不会更改以显示正确的值地选择。

以下是链接中的示例代码:

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

testApp.controller('Ctrl', function ($scope) {

    $scope.newInput = '';
    $scope.inputDevice = [
        {
            value: '1',
            label: 'input1'
        },
        {
            value: '2',
            label: 'input2'
        }
    ];
    $scope.selectedDevice = '';

    $scope.addType = function () {
        var newElem = {
            label: $scope.newInput,
            value: '3'
        };
        $scope.inputDevice.push(newElem);
        $scope.selectedDevice = newElem.value;
    };


});

这是html:

<div ng-app="testApp">
    <div ng-controller="Ctrl">
        <p>
            <input type="text" ng-model="newInput" />
            <br />
            <button ng-click="addType()">Add Type</button>
        </p>
        <select ng-model="selectedDevice">
            <option></option>
            <option ng-repeat="i in inputDevice" value="{{ i.value }}">{{ i.label }} - {{ i.value }}</option>
        </select>
        {{ selectedDevice }}</div>
</div>

5 个答案:

答案 0 :(得分:91)

这正是您不应使用ngRepeat呈现选择选项的原因。您应该使用ngOptions代替:

<select ng-model="selectedDevice" 
        ng-options="i.value as (i.label + '-' + i.value) for i in inputDevice">
    <option></option>
</select>

通常,请避免使用ngRepeat渲染选择选项。至少有两个很好的理由。 ngRepeat每次迭代创建单独的子范围,在选项标记的情况下不需要。另一个重要的警告是,使用ngRepeat,您只能将select绑定到像字符串这样的基元,但是您无法用它将对象写入ngModel。

以下是演示。

&#13;
&#13;
angular.module('demo', []).controller('DemoController', function($scope) {

    $scope.newInput = '';
    $scope.inputDevice = [
    	{value: '1', label: 'input1'}, 
        {value: '2', label: 'input2'}
    ];
    
    $scope.selectedDevice = '';
    $scope.addType = function() {
        var newElem = {
            label: $scope.newInput,
            value: Number($scope.inputDevice[$scope.inputDevice.length - 1].value) + 1
        };
        $scope.inputDevice.push(newElem);
        $scope.selectedDevice = newElem.value;
        $scope.newInput = '';
    };

});
&#13;
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.8/angular.min.js"></script>
<div ng-app="demo" ng-controller="DemoController">
    <form ng-submit="addType()">
        <input type="text" ng-model="newInput" />
        <button type="submit">Add Type</button>
    </form>
    <select ng-model="selectedDevice" ng-options="i.value as (i.label + ' - ' + i.value) for i in inputDevice">
        <option>Select</option>
    </select>
    {{ selectedDevice }}
</div>
&#13;
&#13;
&#13;

答案 1 :(得分:8)

问题在于,由于您未使用ng-options,因此当您设置新selectedDevice时,浏览器尚未完成渲染。如果您使用ng-options启用,则可以使用此解决方法。使用$timeout打包$scope.selectedDevice = newElem.value;以确保它在浏览器使用ng-repeat呈现更改后运行。

我还添加了代码来增加连续添加的下一个值,因为将其硬编码为'3'意味着即使添加了更多的内容,也会连续选择第三个选项。

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

testApp.controller('Ctrl', function($scope, $timeout) {

  $scope.newInput = '';
  $scope.inputDevice = [{
    value: '1',
    label: 'input1'
  }, {
    value: '2',
    label: 'input2'
  }];
  $scope.selectedDevice = '';

  $scope.addType = function() {
    var last = Number($scope.inputDevice[$scope.inputDevice.length - 1].value) + 1;
    var newElem = {
      label: $scope.newInput,
      value: last.toString()
    };
    $scope.inputDevice.push(newElem);
    $timeout(function() {
      $scope.selectedDevice = newElem.value;
    }, 0);
  };

});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.10/angular-route.js"></script>

<div ng-app="testApp">
  <div ng-controller="Ctrl">
    <p>
      <input type="text" ng-model="newInput" />
      <br />
      <button ng-click="addType()">Add Type</button>
    </p>
    <select ng-model="selectedDevice">
      <option></option>
      <option ng-repeat="i in inputDevice" value="{{ i.value }}" ng-selelected="{{ selectedDevice == i.value }}">{{ i.label }} - {{ i.value }}</option>
    </select>
    {{ selectedDevice }}
  </div>
</div>

答案 2 :(得分:4)

我遇到了类似的问题,原因是我的密钥是一个数字,但是当我尝试设置另一个值时,我发送了一个字符串。这种情况下的解决方法是强制将模型值设置为与键相同的类型。

例如:

<select ng-model="model" ng-options="option.{{ key }} as option.{{ label }} for option in options">
    <option value="">{{ emptyLabel }}</option>
</select>
if (scope.options.length > 0) {
    scope.keyType = typeof(scope.options[0][scope.key]);
}

...

if (scope.keyType == 'number') {
    scope.model = parseInt(newVal, 10);
} else {
    scope.model = newVal;
} 

答案 3 :(得分:1)

当更新ng-model时,我有同样的选择不更新问题。我正在从一个函数中检索ng-model的值,该函数根据键值对从数组中提取对象。

执行此操作时,返回的对象具有hashkey属性$$hashKey: "object:115"

当我使用angular.copy创建了一个对象的副本时,问题就出现了,它剥离了这个&#39; hashkey&#39;财产,因此不会被选中。

在重新组织代码后,在angular.copy之后获取ng-model值,问题得到了解决

ConstructorReviewers: function (oItem) {
      this.PERSON_ID = oItem.PERSON_ID;
      this.CHAIR_PERSON = oItem.CHAIR_PERSON;

      /* // Commented this part and added it to EditItem function      
      this.oDepartment = CommonFactory.FindItemInArray(vm.oCommittee.arrDepartments, 'NAME', this.DEPARTMENT, 'item');
      */    
      this.EditItem = function () {
           vm.EditItemOriginal = this;
           angular.copy(this, vm.EditItem); // After this update the ng-model into vm.EditItem.oTitle object
           vm.EditItem.oTitle = CommonFactory.FindItemInArray(vm.oCommittee.arrTitles, 'TITLE', vm.EditItem.TITLE, 'item');
           vm.Popup.ShowPopup(true, 'new_edit', Constants.Mentoring.Popup.Edit);
      }
}

答案 4 :(得分:1)

我遇到了同样的问题。为我解决的是将数字转换为字符串。例如:

$scope.selectedDevice = "" + newElem.value;