0
我需要幫助鏈接我的ul和li來自動過濾搜索。我不知道該從哪裏走。將我的搜索過濾器鏈接到列表項:knockout js
self.filterMarkers = function() {
console.log(self.searchQuery);
var searchInput = self.searchQuery().toLowerCase();
self.visiblePlaces.removeAll();
self.allPlaces.forEach(function(place) {
console.log(place);
place.marker.setVisible(false);
if (placeName.toLowerCase().indexOf(searchInput) !== -1) {
self.visiblePlaces.push(place);
};
});
self.visiblePlaces().forEach(function(place) {
console.log(place);
place.marker.setVisible(true);
});
};
,我需要爲我的名單和標記,當我在搜索輸入類型來更新。幫幫我?
請閱讀:stackoverflow.com/help/mcve和更好地解釋你想做的事。 「當我輸入搜索輸入時,我需要更新列表和標記。」那個清單在哪裏?什麼是標記? serach輸入在哪裏?這個問題意味着什麼? – JotaBe
您可能想要爲您的過濾結果使用計算:http://knockoutjs.com/documentation/computedObservables.html –