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); }); } } })


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM