admin管理员组文章数量:1345322
I am trying to pass a props value and an form value to the backend controller using axios. But it only sends form value not the props value. My code is -
<template>
<form @submit.prevent='onSubmit'>
<div class="media-ment">
<input type="text" v-model='formment' class="form-control" placeholder="ment...">
</div>
</form>
</template>
<script>
export default {
props: ['postId'],
data() {
return {
form: new Form({ment: ''}),
id: this.postId
}
},
methods: {
onSubmit() {
console.log(this.postId); // it shows the value in console but the value doesnt pass
this.form
.post('ments', this.data)
.then(post => this.$emit('pleted', ment));
}
}
}
</script>
in console it shows only the ment, not the prop value:
How to pass both value ??
thanks in advance
I am trying to pass a props value and an form value to the backend controller using axios. But it only sends form value not the props value. My code is -
<template>
<form @submit.prevent='onSubmit'>
<div class="media-ment">
<input type="text" v-model='form.ment' class="form-control" placeholder="ment...">
</div>
</form>
</template>
<script>
export default {
props: ['postId'],
data() {
return {
form: new Form({ment: ''}),
id: this.postId
}
},
methods: {
onSubmit() {
console.log(this.postId); // it shows the value in console but the value doesnt pass
this.form
.post('ments', this.data)
.then(post => this.$emit('pleted', ment));
}
}
}
</script>
in console it shows only the ment, not the prop value:
How to pass both value ??
thanks in advance
Share Improve this question asked Jul 23, 2017 at 18:13 Wahidul AlamWahidul Alam 1,2535 gold badges31 silver badges60 bronze badges 1- Have you tried '.post({post: this.data, id: this.id}' – Phorce Commented Jul 23, 2017 at 19:25
1 Answer
Reset to default 6here i got the solution.
<template>
<form @submit.prevent='onSubmit'>
<div class="media-ment">
<input type="text" v-model='ment' class="form-control" placeholder="ment...">
</div>
</form>
</template>
<script>
export default {
props: ['postId'],
data() {
return {
ment: ''
}
},
methods: {
onSubmit() {
axios.post('ments', {ment: this.ment, id: this.postId})
.then(post => this.$emit('pleted', ment));
}
}
}
</script>
本文标签: javascriptPass multiple parameter by POST axios vueStack Overflow
版权声明:本文标题:javascript - Pass multiple parameter by POST axios vue - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743801769a2541446.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论