我有一个 dom-repeat 显示大量项目(大约 9000 个)。
我试图只显示部分项目,这样我就不会得到一个巨大的滚动条。为此,我使用 dom-if 仅显示索引大于 10 的项目。
dom-repeat 排序或过滤的时候,每一项的索引都会重新计算,所以效果很好。
然后我使用 iron-scroll-threshold 来检测用户何时滚动到页面底部,然后我正在增加显示的项目数。
问题是,这不是重新计算索引——换句话说,我不知道如何“重绘”dom-repeat。
有没有办法强制 dom-repeat 重新计算所有索引?调用 this.$.list.render() 似乎没有这样做。
<template id="list" is="dom-repeat" id="table" items="{{items}}" sort="{{sortFuntion}}">
<template is="dom-if" if="{{isShowItem(index)}}">
[[item.name]]<br />
</template>
</template>
<iron-scroll-threshold scroll-target="document" on-lower-threshold="showMoreData">
</iron-scroll-threshold>
<script>
Polymer({
is: 'my-element',
properties: {
limit: {type: Number, value: 10}
},
isShowItem: function(index) {
return (index < this.limit);
// we only show the items that have an index smaller than "limit"
// (the index is recalculated for each sort or filter, so it works well).
},
showMoreData: function() {
// this is called by iron-scroll-threshold when we scroll down the page
this.set("limit", this.limit + 10);
// this is what doesn't seem to do anything:
// (ideally we want it to recalculate each item's index)
this.$.list.render();
}
});
</script>