我正在使用vue-cli scaffold for webpack
我的Vue组件结构/层次结构目前如下所示:
在应用程序级别,我想要一个vuejs组件方法,它可以将所有子组件的数据聚合到一个可以发送到服务器的JSON对象中。
有没有办法访问子组件的数据?具体来说,多层深?
如果没有,传递可观察数据/参数的最佳做法是什么,以便当子组件修改它时,我可以访问新值?我试图避免组件之间的硬依赖关系,所以到目前为止,使用组件属性传递的唯一内容是初始化值。
更新
答案可靠。在查看了两个答案后,我发现有用的资源:
答案 0 :(得分:32)
对于这种结构,有一种商店是好的。
VueJS为此提供了解决方案,它被称为Vuex。如果您还没准备好使用Vuex,您可以创建自己的简单商店。
让我们试试这个
MarkdownStore.js
export default {
data: {
items: []
},
// Methods that you need, for e.g fetching data from server etc.
fetchData() {
// fetch logic
}
}
现在,您可以在任何地方使用这些数据,并导入此商店文件
HomeView.vue
import MarkdownStore from '../stores/MarkdownStore'
export default {
data() {
sharedItems: MarkdownStore.data
},
created() {
MarkdownStore.fetchData()
}
}
这就是你可以使用的基本流程,如果你不想和Vuex一起使用。
答案 1 :(得分:20)
传递可谓数据/参数的最佳做法是什么,以便当子组件修改它时,我可以访问新值?
道具的流动是单向的,孩子不应该直接修改道具。
对于复杂的应用程序,vuex是解决方案,但对于简单的情况,vuex是一种过度杀伤力。就像@Belmin所说的那样,由于反应系统,你甚至可以使用普通的JavaScript对象。
另一种解决方案是使用事件。 Vue已经实现了EventEmitter接口,孩子可以使用String[] foo = new String[] {"foo"}
String[] bar = new String[] {"bar"};
String[] chosen = choose(foo, bar); // this method could return foo or bar
与其父接口进行通信。
家长会听取这样的事件:(this.$emit('eventName', data)
是@update
的缩写)
v-on:update
并更新事件处理程序中的数据:
<child :value="value" @update="onChildUpdate" />
以下是Vue中自定义事件的简单示例:
http://codepen.io/CodinCat/pen/ZBELjm?editors=1010
这只是父子沟通,如果一个组件需要与其兄弟姐妹交谈,那么你需要一个全局事件总线,在Vue.js中,你可以只使用一个空的Vue实例:
methods: {
onChildUpdate (newValue) {
this.value = newValue
}
}
答案 2 :(得分:5)
您可以引用子组件并将其用作此子组件 this。$ refs.refComponentName。$ data
父组件
<template>
<section>
<childComponent ref="nameOfRef" />
</section>
</template>
methods: {
save() {
let Data = this.$refs.nameOfRef.$data;
}
},
答案 3 :(得分:4)
我不确定这是否是个好习惯。
在我的子组件中,没有按钮可以发出更改的数据。它的形式大约有5到10个输入。单击另一个组件中的“处理”按钮后,数据将被提交。因此,当属性更改时,我无法发出所有属性。
所以,我做了
在我的父组件中,我可以通过“ ref”访问孩子的数据
例如
<markdown ref="markdowndetails"></markdown>
<app-button @submit="process"></app-button>
// js
methods:{
process: function(){
// items is defined object inside data()
var markdowns = this.$refs.markdowndetails.items
}
}
注意:如果您在整个应用程序中都这样做,则建议改用vuex。
答案 4 :(得分:1)
就我而言,我有一份注册表,已将其细分为各个部分。
如上所述,我使用了$ refs,例如在我的父母中:
在模板中:
<Personal ref="personal" />
脚本-父组件
export default {
components: {
Personal,
Employment
},
data() {
return {
personal: null,
education: null
}
},
mounted: function(){
this.personal = this.$refs.personal.model
this.education = this.$refs.education.model
}
}
这很好,因为数据是反应性的。