我有一个父母将道具传递给孩子,孩子向父母发出事件。然而,这不是完全有效,我不知道为什么。有什么建议吗?
父:
<template>
<div class="natural-language">
<div class="natural-language-content">
<p class="natural-language-results">
<msm-select :options="payments" :model="isShowingUpdate" />
</p>
</div>
</div>
</template>
<script>
import msmSelect from '../form/dropdown.vue'
export default {
components: {
'msm-select': msmSelect
},
data() {
return {
isShowingUpdate: true,
payments: [
{'value': 'paying anuualy', 'text': 'paying anuualy'},
{'value': 'paying monthly', 'text': 'paying monthly'}
],
}
}
}
</script>
子:
<template>
<div class="form-pseudo-select">
<select :model="flagValue" @change="onChange($event.target.value)">
<option disabled value='Please select'>Please select</option>
<option v-for="(option, index) in options" :value="option.value">{{ option.text }}</option>
</select>
</div>
</template>
<script>
export default {
props: {
options: {
elType: Array
},
isShowingUpdate: {
type: Boolean
}
},
data() {
return {
selected: '',
flagValue: false
}
},
methods: {
onChange(value) {
if (this.selected !== value) {
this.flagValue = true;
} else {
this.flagValue = false;
}
}
},
watch: {
'flagValue': function() {
console.log('it changed');
this.$emit('select', this.flagValue);
}
},
created() {
console.log(this.flagValue);
this.flagValue = this.isShowingUpdate;
}
}
</script>
基本上,当选择框中的选项发生变化时,应更新布尔标志。但是,在我的孩子中,我为 isShowingUpdate 获得未定义。我错过了什么?
答案 0 :(得分:2)
你说两个组件之间没有关系。
您调用parent
的组件实际上是孩子......而孩子是parent
。
在您的情况下,父组件始终是调用另一个组件的组件:
//Parent component
<template>
...
<msm-select :options="policies" :model="isShowingUpdate" /> << the child
...
</template>
您应该更改两个组件之间的道具/事件。
修改强>
您可以编辑:
onChange(value) {
if (this.selected !== value) {
this.flagValue = true;
} else {
this.flagValue = false;
}
}
如下所示:
关于孩子们:
onChange(value) {
if (this.selected !== value) {
this.flagValue = true;
} else {
this.flagValue = false;
}
this.$emit('flagChanged', this.flagValue)
}
在父级上使用emit
事件捕获并调用其他方法:
//HTML part:
<msm-select :options="payments" :model="isShowingUpdate" v-on:flagChanged="actionFlagChanged" />
//JS part:
methods: {
actionFlagChanged () {
//what you want
}
}
我可以给你一些tips
吗?
它不是一个名字的{非常好的名字:onChange
在onChange事件中...尝试类似:updateFlag(更多
语义)。
我认为您可以删除手表部分并在onChange中执行此操作 事件
尝试找到一份好的文档/教程(即官方文档),以了解有关父/子通信的更多信息。
请记住添加事件总线导入:
import { EventBus } from './event-bus'
希望它有所帮助!