我有一個對象在angularjs reportViewList
,它有兩個成員:name
和bpList
。 bpList
也是具有兩個元素的對象:id
和name
。來自一個對象的多個參數的角度過濾器
假設我有一個ng模型reportFilter的輸入,我想通過名稱和bpList.name
的統一顯示結果。
我寫的代碼如下:
ng-repeat="view in reportViewList | filter:({name: reportFilter}||{bpList.name: reportFilter})"
但是,經過opeartion ||
不起作用了一句。
代碼有什麼問題?
您可以發佈您過濾代碼或
將匹配用一些例子創建一個plunker? –