过滤单向绑定 - 内联过滤器

时间:2017-12-27 21:10:05

标签: angularjs filter

所以我有这个

patternProperties

<input type="text" ng-model="search" class="form-control">

我有一个表,我使用上面的语法来显示属性(描述),该属性位于不同的对象(国家/地区)数组中,因为它们在数据库中具有外键关系。我希望能够通过此外来对象中存在的此属性(国家/地区中的说明)进行过滤。我不知道如何做到这一点。

到目前为止,我只能按城市对象内的属性进行过滤。

示例:

<tr ng-repeat="city in cities | filter: search">
      <td>{{city.description}}</td>
      <td>{{(countries | filter : {id:city.idCountry}:true)[0].description}}</td>
</tr>

生成的HTML是

city = {
     id: 55,
     code: "C4589",
     description: "NYC",
     idCountry: 35
}

country = {
      id: 15,
      description: "US"
}

0 个答案:

没有答案