在 VueJS 中将父函数传递给子组件
Passing Parent Function to Child Component in VueJS
我正在练习 VueJS 1.0,并且正在学习组件。
在这个 example
中,有一个 input
元素并且必须提供 coupon
或来自 API 的某种 code
。我必须验证。我有我的 <coupon >
组件和 when-applied
的道具。 when-applied
必须调用父函数 setCoupon
但它不会。
我只收到这个错误 this.whenApplied is not a function
。
<div id="demo" class="list-group">
<script id="coupon-template" type="x-template">
<input type="text" v-model="coupon" v-on:blur="whenCouponHasBeenEntered">
<div v-text="text"></div>
</script>
<coupon when-applied="setCoupon"></coupon>
</div>
这是我的 app.js
文件
Vue.component('coupon', {
template: '#coupon-template',
props: ['whenApplied'],
data: function() {
return {
coupon: '',
invalid: false,
text: ''
}
},
methods: {
whenCouponHasBeenEntered: function() {
this.validate();
},
validate: function() {
if( this.coupon == 'FOOBAR') {
this.whenApplied(this.coupon);
return this.text = '20% OFF!!';
}
return this.text = 'that coupon doesn`t exists';
}
}
});
new Vue({
el: '#demo',
methods: {
setCoupon: function(coupon) {
alert('set coupon'+ coupon);
}
}
});
有人请帮助。非常感谢建议。
你应该 bind
属性:
<coupon v-bind:when-applied="setCoupon"></coupon>
或者您可以对 v-bind
使用 shorthand 语法:
<coupon :when-applied="setCoupon"></coupon>
详细了解 props
here。
我正在练习 VueJS 1.0,并且正在学习组件。
在这个 example
中,有一个 input
元素并且必须提供 coupon
或来自 API 的某种 code
。我必须验证。我有我的 <coupon >
组件和 when-applied
的道具。 when-applied
必须调用父函数 setCoupon
但它不会。
我只收到这个错误 this.whenApplied is not a function
。
<div id="demo" class="list-group">
<script id="coupon-template" type="x-template">
<input type="text" v-model="coupon" v-on:blur="whenCouponHasBeenEntered">
<div v-text="text"></div>
</script>
<coupon when-applied="setCoupon"></coupon>
</div>
这是我的 app.js
文件
Vue.component('coupon', {
template: '#coupon-template',
props: ['whenApplied'],
data: function() {
return {
coupon: '',
invalid: false,
text: ''
}
},
methods: {
whenCouponHasBeenEntered: function() {
this.validate();
},
validate: function() {
if( this.coupon == 'FOOBAR') {
this.whenApplied(this.coupon);
return this.text = '20% OFF!!';
}
return this.text = 'that coupon doesn`t exists';
}
}
});
new Vue({
el: '#demo',
methods: {
setCoupon: function(coupon) {
alert('set coupon'+ coupon);
}
}
});
有人请帮助。非常感谢建议。
你应该 bind
属性:
<coupon v-bind:when-applied="setCoupon"></coupon>
或者您可以对 v-bind
使用 shorthand 语法:
<coupon :when-applied="setCoupon"></coupon>
详细了解 props
here。