最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Pass multiple parameter by POST axios vue - Stack Overflow

programmeradmin2浏览0评论

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
Add a ment  | 

1 Answer 1

Reset to default 6

here 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>
发布评论

评论列表(0)

  1. 暂无评论