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请求,如何提交表单数据?的主要内容,如果未能解决你的问题,请参考以下文章