createIntersectionObserver:selectAll不起作用
this.createIntersectionObserver({
thresholds: [0.1],
initialRatio: 0.2,
selectAll: true,
}).relativeToViewport()
.observe(’.listprods’, res => {
util.showBusy(’’ + res.id);
this.setData({
total: ++this.data.total,
});
});
设置selectAll:true时,仍然只是第一个元素起作用,listprods样式类的其它节点不起作用