我目前正在学习 VueJs 并摆弄 Chart.js ( https://github.com/apertureless/vue-chartjs )。我试图让甜甜圈具有反应性行为,但我只能使用 ref 属性让它工作,据我了解,这是不好的风格。我的第一个问题是,避免$refs是好的风格的假设是否正确。
我的方法的第一个问题是我不知道 mixins,但是关于如何使用 vue-chartjs 的唯一示例反应性地使用了它(https://github.com/apertureless/vue-chartjs/blob/master/src/ examples/ReactiveExample.js是参考点)我在我的 Vue 组件中创建了一个名为 updateData 的方法,它将重置我的组件 chartData,然后将其设置为道具数据。首先,这是我的代码:
chart.blade.php(网页视图):
<html>
<head>
<meta charset="utf-8">
<title>Testchart</title>
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div id="app">
<h1>Testchart</h1>
<doughnut :data="doughnut_data" :options="doughnut_options" ref="chart"></doughnut>
<button-reduce v-on:numberreduced="reduce"></button-reduce>
</div>
<script src="js/app.js" charset="utf-8"></script>
</body>
</html>
应用程序.js:
/**
* First we will load all of this project's JavaScript dependencies which
* includes Vue and other libraries. It is a great starting point when
* building robust, powerful web applications using Vue and Laravel.
*/
require('./bootstrap');
/**
* Next, we will create a fresh Vue application instance and attach it to
* the page. Then, you may begin adding components to this application
* or customize the JavaScript scaffolding to fit your unique needs.
*/
Vue.component('doughnut', require('./components/testDoughnut.vue'));
Vue.component('button-reduce', require('./components/button.vue'));
const app = new Vue({
el: '#app',
data: {
doughnut_data: {
labels: ['VueJs', 'EmberJs', 'ReactJs', 'AngularJs'],
datasets: [
{
backgroundColor: [
'#41B883',
'#E46651',
'#00D8FF',
'#DD1B16'
],
data: [40, 20, 80, 10]
}
]
},
doughnut_options: {
responsive: true,
maintainAspectRatio: false
}
},
methods: {
reduce() {
this.doughnut_data.datasets[0].data[2] = this.doughnut_data.datasets[0].data[2] - 5;
this.$refs.chart.updateData();
}
}
});
最后但同样重要的是,我的 Vue 组件 testDoughnut.vue
<script>
import { Doughnut, mixins } from 'vue-chartjs'
export default Doughnut.extend({
mixins: [mixins.reactiveData],
props: ["data", "options"],
data() {
return {
chartData: ''
}
},
created() {
this.updateData();
},
mounted () {
this.renderChart(this.chartData, this.options)
},
methods: {
updateData() {
this.chartData = {}; // without this step, it does not work (no reactive behaviour). Why is this necessary?
this.chartData = this.data;
}
}
})
</script>
出现了以下问题:
- (从上面):避免$refs是一件好事吗?
- 为什么无法直接从我的 web 视图更新 chartData?
:chartData="doughnut_data"
没用,我需要使用自定义道具“数据” - 在我的 testDoughnut.vue 中,需要先将 chartData 重置为一个空的 JSON 对象,然后再将其分配给 this.data。为什么需要此重置?从桌面开发(C#)开始,我认为我可以
this.chartData = this.data
在不需要空对象的情况下进行编写。 - 有没有更好的方法来处理这个问题,而不是我做的方式(使用 ref)?