axios 使用post 发送表单数据 后台收到了请求,但是没有内容?

发布于 2022-09-05 15:32:49 字数 1097 浏览 11 评论 0

代码是这样的

          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是这样的

clipboard.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深海不蓝 2022-09-12 15:32:49

发送过去的数据格式不对吧,如果对的话,那后端必然会接收到的

提赋 2022-09-12 15:32:49

把header去掉试试
json数据但是header确是表单的格式 application/x-www-form-urlencoded 表单应该是username=1111&password=sdf

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文