axios 使用post 发送表单数据 后台收到了请求,但是没有内容?
代码是这样的
this.$http({
method: 'post',
url: 'http://192.168.1.108:3000/login',
data: {
username: '11111',
password: '11111'
},
headers: {'Content-Type': 'application/x-www-form-urlencoded'}
})
.then(function (response) {
console.log(response);
if(response.body != null & response.body.length > 0){
this.$store.commit('isLogin',response.body[0]);
this.loginForm.userName=''
this.loginForm.pwd= ''
this.$router.push({ path: '/login' })
this.dialogVisible = false;
}else{
alert('请输入正确的用户名和密码!!!');
this.loginForm.userName=''
this.loginForm.pwd= ''
}
后台收到了我的请求,但是好像是说里面没有数据(data里的username和password没发过去)
我收到的responsed是这样的
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
发送过去的数据格式不对吧,如果对的话,那后端必然会接收到的
把header去掉试试
json数据但是header确是表单的格式
application/x-www-form-urlencoded
表单应该是username=1111&password=sdf