検索

ホームページ  >  に質問  >  本文

node.js - axios 请求数据,返回数据 data为空怎么办

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

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

巴扎黑巴扎黑2777日前1002

全員に返信(4)返信します

  • 黄舟

    黄舟2017-04-17 16:39:47

    文章に何か問題があるようです

    返事
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-17 16:39:47

    サーバー側で分析を試み、受信したパラメーターを出力して、それらが一貫しているかどうかを確認してください

    返事
    0
  • 高洛峰

    高洛峰2017-04-17 16:39:47

    axiosのpostパラメータに問題がある可能性があります。リファレンス axios POST

    返事
    0
  • 黄舟

    黄舟2017-04-17 16:39:47

    https://www.npmjs.com/package...
    投稿リクエストのデフォルトでは、json 形式でデータが送信されます

    返事
    0
  • キャンセル返事