尝试更新 Vue js 中的图表时出现最大调用堆栈错误
2021-07-31
6007
我有一个使用 Chart.js 3.5 库绘制的折线图。图表呈现正确、响应迅速,所有动画均能正常工作。
我试图从父组件触发数据更新,并触发图表更新。当调用
chart.update()
时,会引发异常:“Uncaught (in promise) RangeError:超出最大调用堆栈大小”
我使用的是 Vue 3 和 Chart.js 3.5
编辑 1:这里有一个 沙盒 来复制错误。
逻辑如下:
- 图表数据通过 props 从父组件传递到子组件。 shouldUpdate 属性默认为 false。
- 当使用“createChart”方法安装子组件时,将绘制图表,并使用来自父组件的数据
- 子组件上的观察者会观察“shouldUpdate”属性的变化。
- 在父组件内单击按钮时,“shouldUpdate”设置为 True,从而触发子组件上的观察者。
- 子组件更改图表数据,更新图表,并将“shouldUpdate”属性重置回 False。
预期结果:
- 图表使用来自父组件的数据呈现。
- 图表根据从父组件传递的选项进行响应/动画处理
- 从父组件收到触发器时更新图表
实际结果:
- 图表使用来自父组件的数据呈现。
- 图表根据从父级传递的选项进行响应/动画处理
- 图表更新失败,出现“超出最大调用堆栈大小”错误。
父元素:Line.vue
<template>
<raw
:type="type"
:options="options"
:data="chartData"
:shouldUpdate="shouldUpdate"
:resetUpdate="resetUpdate"
/>
<button @click="updateData"></button>
</template>
<script>
import Raw from "./Raw.vue";
export default {
name: "App",
components: {
Raw,
},
computed: {
chartData: function () {
return this.data;
},
},
methods: {
updateData() {
this.shouldUpdate = true;
},
resetUpdate() {
this.shouldUpdate = false;
},
},
data() {
return {
type: "line",
shouldUpdate: false,
options: {
responsive: true,
animation: true,
maintainAspectRatio: false,
},
data: {
labels: ["Jan", "Feb", "Mar", "Apr", "May", "June", "July"],
datasets: [
{
label: "My line Dataset",
data: [65, 59, 80, 81, 56, 55, 40],
fill: false,
borderColor: "rgb(75, 192, 192)",
tension: 0.1,
},
{
label: "My second line Dataset",
data: [100, 79, 8, 80, 90, 55, 60],
fill: false,
borderColor: "rgb(75, 19, 192)",
tension: 0.1,
},
],
},
};
},
};
</script>
子组件:Raw.vue
<template>
<canvas />
</template>
<script>
import Chart from "chart.js/auto";
export default {
name: "Raw",
props: ["type", "data", "options", "shouldUpdate", "resetUpdate"],
data() {
return {
chart: null,
localData: null,
};
},
computed: {
parentEl: function () {
const size = Math.min(this.$parent.width, this.$parent.height);
return { height: size, width: size };
},
},
watch: {
shouldUpdate: function (val) {
console.log(val);
if (val) {
console.log("updateTriggered");
console.log(this.chart.data.datasets[0].data[5])
this.chart.data.datasets[0].data[5] = Math.round(Math.random() * 100)
console.log(this.chart.data.datasets[0].data[5]) // check if data changed
this.chart.update(); // this seems to cause the error
}
},
},
methods: {
createChart() {
this.localData = this.data;
this.chart = new Chart(this.$el, {
type: this.type,
data: this.localData,
options: this.options,
});
},
},
mounted() {
this.createChart();
},
};
</script>
<style scoped>
</style>
错误回溯:
[Vue warn]: Unhandled error during execution of watcher callback
at <Raw type="line" options= {} data= {labels: Array(7), datasets: Array(2)} ... >
at <App>
runtime-core.esm-bundler.js?5c40:38 [Vue warn]: Unhandled error during execution of scheduler flush. This is likely a Vue internals bug. Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/vue-next
at <Raw type="line" options= {} data= {labels: Array(7), datasets: Array(2)} ... >
at <App>
Uncaught (in promise) RangeError: Maximum call stack size exceeded
at _resolveWithPrefixes (helpers.segment.js?dd3d:1797)
at eval (helpers.segment.js?dd3d:1605)
at _cached (helpers.segment.js?dd3d:1687)
at Object.get (helpers.segment.js?dd3d:1604)
at _resolveWithContext (helpers.segment.js?dd3d:1695)
at eval (helpers.segment.js?dd3d:1647)
at _cached (helpers.segment.js?dd3d:1687)
at Object.get (helpers.segment.js?dd3d:1646)
at toRaw (reactivity.esm-bundler.js?a1e9:743)
at toRaw (reactivity.esm-bundler.js?a1e9:743)
沙盒 复制错误。
2个回答
添加 Petru Tanas 解决方法以使图表不具有反应性,您还可以使用 shallowRef
import { shallowRef } from 'vue';
data() {
return {
chart: null,
localData: null,
};
},
methods: {
createChart() {
this.localData = this.data;
this.chart = shallowRef(
new Chart(this.$el, {
type: this.type,
data: this.localData,
options: this.options,
})
);
},
},
LeeLenalee
2021-08-01
我找到了一种适用于我特定情况的解决方法,但可能并不适合所有人。
解决方法是使图表对象不具有反应性,这样 Vue 就不会跟踪它的变化,方法是将其移出组件“数据”的“return”语句。图表对象在组件内部仍然可用,所有功能(响应式、动画等)都按预期工作,但 Vue 不会在其他任何地方跟踪它,因此如果您尝试跨组件传递它或将其与 Vuex 一起使用,这可能会导致问题
代码如下:
不起作用:
<template>
<canvas />
</template>
<script>
import Chart from "chart.js/auto";
export default {
name: "Raw",
props: ["type", "data", "options", "shouldUpdate", "resetUpdate"],
data() {
return {
chart: null, // this line will change
localData: null,
};
},
....
}
工作:
<template>
<canvas />
</template>
<script>
import Chart from "chart.js/auto";
export default {
name: "Raw",
props: ["type", "data", "options", "shouldUpdate", "resetUpdate"],
data() {
this.chart = null // this line changed
return {
localData: null,
};
},
....
}
Petru Tanas
2021-07-31