1

AngularJS 新手试图将搜索过滤器限制为一个非常嵌套的数组项。这是我的输出截图:

<div ng-controller="listController">
  <input type="text" ng-model="searchMe" />
  <table class="table">
    <tr>
        <th>Product Name</th>
        <th>Color</th>
        <th>Size</th>
        <th>Features</th>
    </tr>
    <tr ng-repeat="p in prods | filter:searchMe">
        <td>{{p.products.1.ProductName}}</td>
        <td>{{p.products.1.Color}}</td>
        <td>{{p.products.1.Size}}</td>
        <td>
          <ul ng-repeat="feats in p.features">
            <li>{{feats}}</li>
          </ul>
        </td>
    </tr>
  </table>
</div>

正确显示列表中的所有项目,包括附加功能。现在 products 数组中至少还有十几个项目,包括描述、价格等。问题是如果我在框中搜索某些内容,它会搜索整个数组。现在我尝试将搜索输入更改为:

<input type="text" ng-model="search.products.1.ProductName" />
<input type="text" ng-model="search.p.products.1.ProductName" />
<input type="text" ng-model="search.ProductName" />

但是,只要我输入一个字符,一切都会消失。是的,我还取消了搜索过滤器中的“我”(| filter:search)。如何将搜索绑定到嵌套数组中的特定项目?我还需要能够按功能进行搜索,但我希望通过首先解决这个问题,它会引导我找到这些功能。如果这有所不同,我的内容也会被一个 json 文件提取。搜索功能最终也将是复选框,而不是文本输入,但我认为这不重要,我仍然需要针对特定​​项目(名称、颜色、大小等)。

想法/想法/建议?

4

1 回答 1

0

我暂时的解决方案是重组 json 文件。也许当我对 Angular 的了解扩展时,我将能够重新审视。

于 2013-10-31T15:50:11.380 回答