开发者问题收集

v-on 处理程序中的错误:“TypeError:无法读取 null 的属性‘emit’

2020-05-18
18655

我正在开发一个 vue 项目,并希望在一段时间后从子组件向父组件发出事件(用户将鼠标悬停在元素上,几秒钟后,应该会发生发出事件)。

我很确定我在其他组件中做过类似的发出,并且以前也成功过,但现在我收到这两个错误。我不确定发生了什么变化。我在第一次尝试后实现了 vuex,然后又回到了这个问题,现在我不确定发生了什么?但也许我只是删除了一些东西,或者我不知道。 我还尝试了一条似乎有问题的线上方的控制台日志,那里的 this 值似乎不为空。 这些是我收到的错误:

[Vue 警告]:v-on 处理程序中的错误:“TypeError:无法读取 null 的属性‘emit’” ,之后是错误 无法读取 null 的属性‘emit’ ,第一个错误提到,错误出现在组件中,如下所示。

我看到的与此问题相关的大多数内容都是关于人们错误地执行 es6 箭头函数,所以也许 this.timer = setInterval(() => this.countdown(), 1000); 有问题?我不太确定。

这是组件(请原谅混乱的代码):

<template>
    <div
        :id="id"
        class="board"
        @dragenter.prevent
        @dragover.prevent
        @drop.prevent="drop"
        @dragenter="dragenter($event)"
        @dragover="dragover($event)"
        @dragleave="dragleave($event)"
    >
        <slot class="row"/>
        <div
        :id="`ui-details-${id}`"
        v-show="extendedHover">
        Long hover
        </div>
    </div>
</template>

<script>
export default {
  name: 'Devices',
  props: ['id', 'acceptsDrop'],
  data() {
    return {
      extendedHover: false,
      timer: null,
      totalTime: 2,
    };
  },
  methods: {
    drop(e) {
      if (e.dataTransfer.getData('type') === 'layout') { // only accept dropped cards, not boards
        const layoutId = e.dataTransfer.getData('layout_id');
        this.$emit('dropped-layout', layoutId);
      }
      clearInterval(this.timer);
      this.timer = null;
      this.totalTime = 2;
      console.log(e.dataTransfer.getData('card_id'));
      e.target.classList.remove('hover-drag-over');
      this.extendedHover = false;
      // this.$emit('cancel-hover');
      console.log('-------------dropped');
      console.log(e);
      console.log(e.dataTransfer.getData('type'));
      /* const cardId = e.dataTransfer.getData('card_id');
      console.warn('dropped onto device');
      this.$emit('dropped-component', cardId);
      e.target.classList.remove('hover-drag-over'); */
    },
    dragenter(e) {
      // on dragenter we start a countdown of 1s
      // over this value --> we see it as a long hover
      console.log('------------dragenter');
      console.log(e);
      this.timer = setInterval(() => this.countdown(), 1000);
    },
    dragover(e) {
      if (this.acceptsDrop) {
        e.target.classList.add('hover-drag-over');
      }
    },
    dragleave(e) {
      if (this.acceptsDrop) {
        clearInterval(this.timer);
        this.timer = null;
        this.totalTime = 2;
        e.target.classList.remove('hover-drag-over');
        this.extendedHover = false;
        // this.$emit('cancel-hover');
      }
    },
    countdown() {
      this.totalTime -= 1;
      if (this.totalTime === 0) {
        this.extendedHover = true;
        console.warn(this);
        this.$emit('long-hover'); //this is the problematic line
      }
    },
  },
};
</script>

<style scoped>
    .board{
        width: 100%;
        min-height: 200px;
    }
</style>

感谢您的帮助!

编辑: console.log 的输出如下 VueComponent {_uid: 18, _isVue: true, $options: {…}, _renderProxy: Proxy, _self: VueComponent, …> 如果需要,可以扩展以获取更多信息。

编辑 2:此组件根据父组件中的数组生成,如下所示。因此,该插槽目前仅用字符串填充。

<div
                class = "col-4"
                v-for="(device, index) in devices"
                v-bind:key="`device-${device.ip}`"
            >
                <Devices
                :id="`board-${device.ip}`"
                v-bind:class="{'droparea-device':true, 'your-device': (index === thisDeviceIndex)}"
                @dropped-layout="$emit('dropped-layout', $event, index)"
                @long-hover="fetchAvailableUIsForDevice(device.device_name)"
                @cancel-hover="cancelHover()"
                :acceptsDrop=true
                >
                {{device.device_name}}
                </Devices>
            </div>

编辑 3: 为了测试,我也想尝试一个非常基本的东西。所以我添加了一个带有点击事件的按钮,如下所示(但仍然有错误):

 <b-button
        type="button"
        variant="success"
        v-on:click="$emit('long-hover')"
        >
          Control Center
        </b-button>
3个回答

非常感谢您帮助解决这个奇怪的行为。在使用按钮测试了发射后它仍然不起作用,我认为这非常可疑。 为了确保万无一失,我查看了父组件,因为当子组件发出事件时,我会在那里执行一个函数。 当我查看该函数时,我看到了以下行:

this.socket.emit('fetch_available_uis', { device_name: device });

这里的错误描述很合适!因为正如我所说,我包含了 Vuex,之后它不再起作用了。添加 vuex 时,我还将套接字连接移动到了存储,所以现在确实没有 this.socket,或者更确切地说是上面提到的空值。 我修复了这一行,错误现在消失了!

因此,对于将来遇到类似问题的其他人,我建议查看接收子事件的父级函数并检查那里的错误。因为即使错误发生在父级中,错误消息仍然显示错误发生在子级中,可能是因为它将发出事件的组件作为源,而不是上面的组件。

NotARobot
2020-05-19

我认为是的原因可能来自您所建议的那一行。 this.countdown 指向无处,因为此处的 this 指针不属于 Vue

this.timer = setInterval(() => this.countdown(), 1000);

要修复,我建议您可以尝试

dragenter(e) {
      // on dragenter we start a countdown of 1s
      // over this value --> we see it as a long hover
      console.log('------------dragenter');
      console.log(e);
      let vm = this;  // assign Vue this to vm
      this.timer = setInterval(() => vm.countdown(), 1000); // use vm instead of this
    },
Jake Lam
2020-05-19

对于任何遇到 TypeError: 无法读取 null 属性(读取“emitsOptions”)

就我而言,我使用了 toRaw() 函数,但忘记从 vue 导入它:

import { toRaw } from 'vue';

Eli Zatlawy
2023-05-17