登录
首页 >  文章 >  前端

Vue3 computed 中的循环执行如何避免栈溢出?

时间:2024-11-25 10:12:58 135浏览 收藏

小伙伴们有没有觉得学习文章很有意思?有意思就对了!今天就给大家带来《Vue3 computed 中的循环执行如何避免栈溢出?》,以下内容将会涉及到,若是在学习中对其中部分知识点有疑问,或许看了本文就能帮到你!

Vue3 computed 中的循环执行如何避免栈溢出?

vue3 computed 中的循环执行导致栈溢出

在 vue3 中使用 computed 属性时,一个常见的错误是代码中的循环执行,导致栈溢出。让我们分析一下这个问题的原因和相应的解决方案。

在你提供的代码中,mindate和maxdate两个 computed 属性都依赖于 props.checkdate 数组。当 checkdate 数组发生变化时,这两个属性都会重新计算。然而,在计算过程中,这些属性会对 checkdate 数组进行排序,这可能导致它们相互触发重新计算,从而形成无限循环。

为了解决这个问题,我们可以采取以下步骤:

  • 使用 ref 来存储排序后的数组。
  • 在 checkdate 发生变化时,更新排序后的数组。
  • 在 computed 属性中使用排序后的数组,而不是对 checkdate 进行排序。

修改后的代码如下:

<script lang="ts" setup>
import { ref, computed, watch, onMounted } from 'vue';

const props = defineProps({
  checkDate: {
    type: Array,
    default() {
      return [];
    }
  }
});

// 新建一个响应式属性来存储排序后的数组
const sortedCheckDates = ref([]);

const minDate = computed(() => {
  if (sortedCheckDates.value.length) {
    return new Date(sortedCheckDates.value[0].getTime());
  } else {
    return new Date();
  }
});

const maxDate = computed(() => {
  if (sortedCheckDates.value.length) {
    return new Date(sortedCheckDates.value[sortedCheckDates.value.length - 1].getTime());
  } else {
    return new Date();
  }
});

// 监听checkDate的变化并更新sortedCheckDates
watch(() => props.checkDate, (newVal) => {
  sortedCheckDates.value = newVal.sort((a, b) => a.getTime() - b.getTime());
});

const curYear = ref(new Date().getFullYear());
const curMonth = ref(new Date().getMonth());

watch(() => maxDate.value, (newVal) => {
  if (newVal) {
    curYear.value = newVal.getFullYear();
    curMonth.value = newVal.getMonth();
  }
}, {
  immediate: true
});

onMounted(() => {
  // 初始化sortedCheckDates
  sortedCheckDates.value = props.checkDate.sort((a, b) => a.getTime() - b.getTime());
});
</script>

通过这种方式,我们解决了 computed 属性中的无限循环,避免了栈溢出错误。

以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于文章的相关知识,也可关注golang学习网公众号。

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>