这是我第一次使用IntersectionObserver,并且遵循了此文档https://www.netguru.com/codestories/infinite-scroll-with-vue.js-and-intersection-observer
。但是因为这个错误我被阻止了
[Vue warn]: Error in mounted hook: "TypeError: Failed to construct 'IntersectionObserver': The provided value is not of type '(Element or Document)'"
这是我的触发器组件
<template>
<span ref='trigger'></span>
</template>
<script>
export default {
props:{
options:{
type: Object,
default: () => ({
root: 0,
threshold: "0",
})
}
},
data(){
return{
observer : null
}
},
mounted(){
this.observer = new IntersectionObserver( entries => {
this.handleIntersect(entries[0]);
}, this.options);
this.observer.observe(this.$refs.trigger);
},
destroyed(){
this.observer.disconnect();
},
methods:{
handleIntersect(entry){
if (entry.isIntersecting) this.$emit("triggerIntersected");
}
}
}
</script>
我该如何解决?(谢谢)
最佳答案
您已将default
的options
从以下位置更改:
default: () => {
return {
root: null,
threshold: "0"
};
}
至:
default: () => ({
root: 0,
threshold: "0"
})
但是,如果我们查看
lib.dom.d.ts
,则这是IntersectionObserver选项对象的接口(interface):interface IntersectionObserverInit {
root?: Element | null;
rootMargin?: string;
threshold?: number | number[];
}
当
root
是null
或undefined
时,IntersectionObserver
默认为视口(viewport)元素。因此,将其更改回
null
即可使用。