4

如 Angular-Material md-autocomplete 的文档所述:

md-autocomplete 使用 md-virtual-repeat 指令在下拉列表中显示结果。

我遇到了一个问题,我找不到任何片段如何在自动完成中使用虚拟重复。

我知道我必须根据 md-virtual-repeat 的文档使用特定的结构进行无限滚动。

我有 md 自动完成功能:

<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>

而且我有infiniteItems 对象,根据md-virtual-repeat 建议:

$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 时,我得到消息“未找到”并且加载数据的下拉菜单甚至没有打开。

那么,我做错了什么?

提前致谢!

4

1 回答 1

0

md-autocomplete你的标签属性有问题,换

md-items="item in infiniteItems"

md-items="item in infiniteItems.items"

你应该能够看到自动完成列表。

于 2018-10-13T08:58:09.860 回答