我知道我在做一些愚蠢的事情,所以请放纵我:
html:
Filter: <input type="radio" ng-model="Type" value="Rear"> Rear
<input type="radio" ng-model="Type" value="Front"> Front
<br>
Select:
<name-value-select entry="entry" field="axleType" options="filterTypes"></name-value-select>
控制器:
$scope.$watch('Type', function (Type) {
$scope.filterTypes = [];
if ($scope.axleTypes == undefined || $scope.axleTypes == []) {
$scope.axleTypes = API.GetAxleTypes;
}
angular.forEach($scope.axleTypes, function (type) {
console.log('axleType: ' + type);
console.log('Type: ' + type);
if (axleType.Type == Type) {
this.push(axleType);
}
}, $scope.filterTypes);
$scope.filterTypes.sort(function (a, b) {
return a.Description.localeCompare(b.Description);
});
});
我什至不能循环通过我的手表函数中的轴类型数组。看起来它没有拾取一个奇怪的集合,因为如果未定义或 [],它会绕过填充轴类型。
我正在做一些如此愚蠢的事情,我看不到它。
更新:根据杰森的要求
(1) 我的角度控制器:
$scope.entry = {
Description: ''
};
$scope.Type = 'Front';
$scope.entry.type = '';
$scope.$watch('Type', function (Type) {
$scope.filterTypes = [];
$scope.axleTypes = new API.GetAxleTypes(function (axleTypes) {
angular.forEach($scope.axleTypes, function (axleType) {
if (axleType.Type == Type) {
this.push(axleType);
}
}, $scope.filterTypes);
});
$scope.filterTypes.sort(function (a, b) {
return a.Description.localeCompare(b.Description);
});
});
(2)我的HTML:
Filter: <input type="radio" ng-model="Type" value="Rear"> Rear
<input type="radio" ng-model="Type" value="Front"> Front
<br>
Select:
<name-value-select entry="entry" field="axleType" options="filterTypes"></name-value-select>
没有更多错误 Jason,然而,当我切换两个单选按钮时,没有任何反应,即,当我选择后轴单选按钮时,前轴仍然显示。呃。