node.js - axios 请求数据,返回数据 data为空怎么办
巴扎黑
巴扎黑 2017-04-17 16:37:47
0
4
999

axios 请求数据,返回数据 data为空

同样的借口用jq的ajax调用就是好的

$.ajax({
            url: '/yzh/inter/login',
            type: 'post',
            data: {'userName': username, 'passWord': password},
            success: function (res) {
                console.log(res);
            }
        });

下边是axios的发送

var config = {
       headers: {
             'Content-Type': 'application/x-www-form-urlencoded'
       },
       responseType: 'json',// default
       method: 'post'
};

axios.post('/yzh/inter/login', {
    userName: this.ruleForm.username,
    passWord: this.ruleForm.password                           
},config)
.then((res) => {
    //if (res) {
      //state.username = res.data.data
      console.log("haha",res)
   // }
})

返回结果中 data为null

请问这个问题怎么解决啊。。

巴扎黑
巴扎黑

membalas semua(4)
黄舟

估计哪里写法不对

伊谢尔伦

尝试在server端分析,把接收到的参数打印出来看看是否一致

小葫芦

可能是axios的post参数问题。参考axios POST

黄舟

https://www.npmjs.com/package...
post请求默认是发送json格式的数据

Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan