我的AngularJS应用程序中有一个表单,其中包含带有默认选项的下拉列表。我使用ng-init和ng-selected来实现这一目标。它在Chrome中工作正常,但在Internet Explorer 9中,当我第一次加载页面时,下拉列表中显示的是文字angularjs表达式,即" {{showMethod(args)}}"。当我去更改选项时,选项就在那里。最初表达式并没有表达出来。
这是我的HTML代码:
<td>
<div ng-if="var.methods.length==0">NA</div>
<div ng-if="var.methods.length>0">
<select ng-init="selectedmethods[var.id]=defaultMethod(var.id,var.methods)" ng-model="selectedmethods[var.id]" >
<option ng-repeat="method in var.methods" value="{{method.id}}" ng-selected="isMethodSelected(var.id,method)">{{ showMethod(method,var.id)}}</option>
</select>
</div>
这是另一个ng-repeat的一部分 最初,我使用ng-init将所选方法设置为该变量的默认方法。使用ng-selected和一个名为isMethodSelected的方法,我检查用户是否通过检查selectedmethods对象选择了该方法,如果没有,检查该方法是否为defaut方法。 然后,我使用showMethod函数显示方法名称,我添加它以查看这是否有助于IE中的问题(它没有&#t; t)。我以前只是表达method.formattedMethodName。
以下是我的JS代码的一部分:
$scope.isMethodSelected = function(varid,method) {
var sel = false;
if($scope.request.specsByVar.hasOwnProperty(varid) && $scope.request.specsByVar[varid].method.id==method.id) {
sel = true;
} else if(!$scope.request.specsByVar.hasOwnProperty(varid) && method.defaultMethod) {
sel = true;
}
return sel;
}
$scope.defaultMethod = function(varid,methods) {
var defaultMethod;
if($scope.request.specsByVar.hasOwnProperty(varid)) {
defaultMethod = $scope.request.specsByVar[varid].method.id;
} else {
for (var i = 0; i < methods.length; i++) {
if(methods[i].defaultMethod) {
defaultMethod = methods[i].id;
break;
}
}
}
return defaultMethod;
}
$scope.showMethod = function(method,varid) {
if(method) {
return method.formattedMethodName;
} else {
return $scope.selectedmethods[varid].formattedMethodName;
}
};
这显然是IE问题。有没有人有解决方案?
谢谢, 奥尔加
答案 0 :(得分:0)
我能够通过使用ng-options来解决这个问题:
<select ng-init="selectedmethods[var.id]=defaultMethod(var.id,var.methods)"
ng-model="selectedmethods[var.id]" title="{{ selectedmethods[var.id].formula }}"
ng-options="method.id as method.formattedMethodName for method in var.methods | filter:{active:true}">
</select>