我正在嘗試使用AngularJS中的搜索功能(在Ionic框架中)。我有一個包含不同視圖和所有視圖的通用標題的模板。在每個視圖上,使用JSON顯示不同的列表。我想爲每個視圖使用搜索功能。如果我使用一個單一視圖上面的搜索form
和ion-item
在角度js中使用搜索功能
<form class="form-inline">
<div class="form-group">
<input type="text" ng-model="search" class="form-control" placeholder="Search">
</div>
</form>
<ion-item class="item-button-right item-avatar item-icon-right item item-thumbnail-left" ng-repeat="text in texts|filter:search" type="item-text-wrap" href="#/otherContent/texts/{{text.id}}">
此代碼工作正常。但如果我在搜索欄中添加搜索表單並將<ion-item>
標記放在其他頁面中,則不起作用。
我希望這有道理嗎?任何人都可以請建議我們如何實現這一點。我需要在標題中使用搜索欄,這對所有視圖來說都很常見,它應該在加載時搜索每個視圖。任何指針都是真正的讚賞。
非常感謝!非常棒! :) – Shruti