我有一个md-virtual-repeat-container
处理由搜索框触发的 API 调用的数据。当用户输入第二个搜索查询时,我希望能够刷新此容器。
我正在使用类似于来自这个问题的这个plnkr的设置: . 唯一的区别是它在用户输入搜索词时从服务器获取数据。
我的问题
有没有办法触发刷新md-virtual-repeat-container
?
我认为代码不相关,但这是我的(简化的)生产代码:
var self = this;
self.infiniteItems = {
numLoaded_: 0,
toLoad_: 0,
items: [],
getItemAtIndex: function (index) {
if (index > this.numLoaded_) {
this.fetchMoreItems_(index);
return null;
}
return this.items[index];
},
getLength: function() {
return this.numLoaded_ + 25;
},
fetchMoreItems_: function (index) {
if (this.toLoad_ < index) {
this.toLoad_ += 5;
var offset = 0;
$http({
method: 'GET',
datatype: 'json',
url: '{my-api-call}',
contentType: "application/json; charset=utf-8",
cache: false,
params: {
param: query,
page: offset
}
}).then(angular.bind(this, function (obj) {
this.items = this.items.concat(obj.data.SearchResults);
this.numLoaded_ = this.toLoad_;
this.offset++;
$scope.searchResults = obj.data.SearchResults;
}));
}
}
};