最佳答案
如果我有一个对象数组,我想绑定角度模型的属性的一个元素的基础上,一个过滤器,我如何做到这一点?我可以用一个具体的例子来更好地解释:
HTML:
<!DOCTYPE html>
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body ng-controller="MyCtrl">
<input ng-model="results.year">
<input ng-model="results.subjects.title | filter:{grade:'C'}">
</body>
</html>
总监:
function MyCtrl($scope) {
$scope.results = {
year:2013,
subjects:[
{title:'English',grade:'A'},
{title:'Maths',grade:'A'},
{title:'Science',grade:'B'},
{title:'Geography',grade:'C'}
]
};
}
http://jsbin.com/adisax/1/edit
我希望过滤第二个输入到主题中的信息,得到 C 级,但是我不希望将模型绑定到 成绩; 我希望将它绑定到具有 C 级的主题的 书名。
这可能吗,如果可能的话,怎么做呢?