我想用iron-list实现延迟加载。我正在为应用程序使用打字稿。我找到了例子。但是它不适用于打字稿。向下滚动时不会触发该事件。单击列表项时触发。向下滚动时如何实现?我的清单是页面的一部分,所以当向下滚动到清单末尾时,我想从服务器添加更多结果
<iron-list .items=${this.items} as="item" scroll-target="scrollTheshold">
<template>
<div>content here.....</div>
</template>
</iron-list>
<iron-scroll-threshold id="scrollTheshold" lower-threshold="200" on-lower-threshold="${this._loadData()}">
</iron-scroll-threshold>