axios发送post请求,如何提交表单数据?

Posted lyls

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axios发送post请求,如何提交表单数据?相关的知识,希望对你有一定的参考价值。

var app = new Vue({
    
    el: "#register",
    
    data: {
        registerUrl: "/KindlePocket/bindingData"
        newUserInfo: {
            userName:‘n‘,
            phone:‘13‘,
            email:‘12‘,
            emailPwd:‘22‘,
            kindleEmail:‘asd‘
        }
    },
    
    methods: {
        register: function() {
            
                axios.post(this.registerUrl, this.newUserInfo, {
                      headers: {
                            ‘Content-Type‘: ‘application/x-www-form-urlencoded‘
                      }
                  })
                  .then(function (response) {
                    console.log(response);
                  })
                  .catch(function (error) {
                    console.log(error);
                  });
            
        }
    }
})

以上是关于axios发送post请求,如何提交表单数据?的主要内容,如果未能解决你的问题,请参考以下文章

axios发送post请求,提交表单数据

使用axios发送表单数据

VUE post请求设置为formdata传参

axios提交表单后发送的请求过多

axios异步提交表单数据的不同形式

vue表单提交怎么写