我正在尝试使用API调用中的新数据每5秒更新一次图表。我的图表正在更新,但每个点都渲染数百次。我检查了日志,它表明正在引起无限循环,并且不确定如何解决此问题。下面是我当前的代码:
注意:“ graphData”属性是我从Parent传递的数组,是我要添加到图表的API调用中的数据
ChildComponent.vue
<template>
<div class="graphCard">
<Linechart :chartData="dataCollection" :options="options" />
</div>
</template>
<script>
import Linechart from '@/utils/Linechart.js'
export default {
components: {
Linechart
},
props: ['graphData'],
data() {
return {
collection: []
}
},
computed: {
dataCollection() {
this.collection.push(this.graphData[0])
return {
datasets: [
{
label: 'chart',
backgroundColor: 'indigo',
borderColor: 'indigo',
fill:false,
showLine: true,
data: this.collection
}]
}
},
options() {
return {
id: 'Cumulative',
legend: {
display: false
},
scales: {
xAxes: [{
type: 'time',
distribution: 'series',
time: {
displayFormats: {
millisecond: 'mm:ss:SS',
quarter: 'MMM YYYY'
}
}
}],
yAxes: [{
ticks: {
//beginAtZero: true
}
}]
}
}
}
LineChart.js
import { Scatter, mixins } from 'vue-chartjs'
const { reactiveProp } = mixins
export default {
extends: Scatter,
mixins: [reactiveProp],
props: ['chartData', 'options'],
mounted () {
this.renderChart(this.chartData, this.options)
}
}
在另一种方法中,我还尝试在graphData道具上使用观察者将dataCollection和选项设置为“数据”而不是“计算”,但图表未更新并遇到问题“ Uncaught TypeError:Cannot”读取未定义属性'skip'
答案 0 :(得分:1)
通常,computed
比watcher
更好,但是我不确定是否可以在没有更多上下文的情况下调试此无限循环。
这就是应该工作的data
+ watch
替代者。
代码:
<template>
<div class="graphCard">
<Linechart :chartData="dataCollection" :options="options" v-if="dataCollection.datasets[0].data.length"/>
</div>
</template>
<script>
import Linechart from '@/utils/Linechart.js'
export default {
components: {
Linechart
},
props: ['graphData'],
data() {
return {
dataCollection: {
datasets: [{
label: 'chart',
backgroundColor: 'indigo',
borderColor: 'indigo',
fill:false,
showLine: true,
data: []
}]
},
options: {
id: 'Cumulative',
legend: {
display: false
},
scales: {
xAxes: [{
type: 'time',
distribution: 'series',
time: {
displayFormats: {
millisecond: 'mm:ss:SS',
quarter: 'MMM YYYY'
}
}
}],
yAxes: [{
ticks: {
//beginAtZero: true
}
}]
}
}
}
},
watch: {
graphData (newData) {
this.dataCollection.datasets[0].data.push(newData[0])
}
}
}
答案 1 :(得分:0)
@BTL使我在使用该方法时步入正轨,但是某些问题仍然阻止图形正确更新。如果将新数据直接推送到数据集,则chartData似乎无法正确更新。对我有用的东西:
watch: {
graphData (newData) {
currentDataList.push(newData[0])
this.dataCollection = {
datasets: [{
label: 'label',
backgroundColor:'red',
borderColor: 'red',
fill:false,
showLine: true,
lineTension: 0,
data: currentDataList
}]
}
}
}