这是我第一次使用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>

我该如何解决?(谢谢)

最佳答案

您已将defaultoptions从以下位置更改:

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[];
}

rootnullundefined时,IntersectionObserver默认为视口(viewport)元素。

因此,将其更改回null即可使用。

10-05 21:09