我有这个工作代码更新一个图表,其中onMount模拟了一些类型的更新。但是在OnMounted钩子中完全解构数组并用新值重建它似乎不是很有效?我尝试过对data_values和label_values使用React式组件,但当更新触发时,它会导致最大调用堆栈超出错误。
所以我的问题是,有没有比下面的代码更好的方法来更新图表?
<template>
<Line :data="chartData" :options="chartOptions" :style="{ backgroundColor: color }" class="bar_chart"></Line>
</template>
<script lang="ts" setup>
import {
Chart as ChartJS,
CategoryScale,
LinearScale,
PointElement,
LineElement,
Title,
Tooltip,
Legend, ChartData
} from 'chart.js'
import {Line} from 'vue-chartjs'
import {computed, onMounted, reactive, ref} from "vue";
ChartJS.register(
CategoryScale,
LinearScale,
PointElement,
LineElement,
Title,
Tooltip,
Legend
);
let chartOptions = {
responsive: true,
maintainAspectRatio: true
}
let color = "#FFFFFF"
const data_values = ref([40, 39, 10, 40, 39, 80, 40]);
const label_values = ref(['January', 'February', 'March', 'April', 'May', 'June', 'July']);
const chartData = computed(() => {
// getter
return {
labels: label_values.value,
datasets: [
{
label: 'Data One',
backgroundColor: '#f87979',
data: data_values.value
}
]
}
});
// Is it necessary to destructure and rebuild the entire array?
onMounted(() => {
setInterval(() => {
label_values.value = [...label_values.value, "August"];
data_values.value = [...data_values.value, 1000];
}, 3000)
})
</script>
我希望能够对data_values和label_values使用React式组件,并在没有错误的情况下进行更新时简单地推送到数组中,并且computed属性将处理更新。
1条答案
按热度按时间t3irkdon1#
你可以尝试使用
Array.push()
来代替解构赋值,如下所示: