【发布时间】:2014-09-02 14:04:06
【问题描述】:
简单的问题,可能已经讨论过很多次了,但是我在这个简单的问题上找不到合适的解决方案。
问题:
对选定项目的修改对视图没有影响(应该如此)。
控制器:
var myApp = angular.module('myApp', ['ui.select2']);
function MyCtrl($scope) {
$scope.selectedDaltons = [4]; // Averell is preselected (id:4)
$scope.daltons = [
{ id: 1, name: 'Joe' },
{ id: 2, name: 'William' },
{ id: 3, name: 'Jack' },
{ id: 4, name: 'Averell' },
{ id: 5, name: 'Ma' }
];
$scope.changeAverellsName = function() {
// Fiddle's issue!!
// observe, that the selected item on the view does not change!!
$scope.daltons[3].name = "Idiot";
};
};
查看:
<div ng-controller="MyCtrl">
<!-- changing model via click -->
<button ng-click="changeAverellsName()">change Averell's name to 'Idiot'</button>
<!-- selected items are not binded to the model -->
<select multiple ui-select2 class="form-control" id="70.1.6.3" data-ng-model="selectedDaltons">
<option data-ng-repeat="dalton in daltons" value="{{dalton.id}}" text="">{{dalton.name}}</option>
</select>
<!-- this list is for assure, that two way binding works -->
<ul>
<li data-ng-repeat="dalton in daltons">{{dalton.name}}</li>
</ul>
</div>
我怎样才能使双向绑定工作?
【问题讨论】:
标签: angularjs ui-select2