如上所述Angular-Material md-autocomplete' documentation:
md-autocomplete使用md-virtual-repeat指令在下拉列表中显示结果。
我遇到了一个问题,我无法找到任何代码片段如何在自动填充中使用虚拟重复。
据我所知,我必须根据md-virtual-repeat' s documentation使用特定结构进行无限滚动。
我有md-autocomplete:
<md-autocomplete
md-no-cache="true"
md-selected-item="obj.selectedItem"
md-search-text="obj.searchText"
md-items="item in infiniteItems"
md-item-text="item.name"
md-on-demand>
<md-item-template>
<span md-highlight-text="obj.searchText" md-highlight-flags="i">{{item.name}}</span>
</md-item-template>
<md-not-found>
not found!
</md-not-found>
</md-autocomplete>
根据md-virtual-repeat建议,我有infiniteItems对象:
$scope.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_ + 5;
},
fetchMoreItems_: function(index) {
if (this.toLoad_ < index) {
this.toLoad_ += 20;
restService.getData().then(angular.bind(this, function(response) {
this.items = this.items.concat(response.data);
this.numLoaded_ = this.toLoad_;
}));
}
}
}
结果在加载整个页面后第一次重新加载数据,当我尝试输入smth时,我得到消息&#34;未找到&#34;加载数据的下拉列表甚至无法打开。
那么,我做错了什么?
提前致谢!
答案 0 :(得分:0)
您的md-autocomplete
标签属性有问题,请更改
md-items="item in infiniteItems"
到
md-items="item in infiniteItems.items"
,您应该可以看到自动完成列表。