码迷,mamicode.com
首页 > 移动开发 > 详细

axios post提交数据格式不对的问题

时间:2017-12-25 16:04:53      阅读:576      评论:0      收藏:0      [点我收藏+]

标签:for   nsf   content   count   response   color   class   head   url   

需要格式化一下

this.$http({
        method: "post",
        url: "/chinacountry/index.php/home/Search/index",
        data: {
          search: this.search_text
          //search_i: "2"
        },
        transformRequest: [
          function(data) {
            let ret = "";
            for (let it in data) {
              ret +=
                encodeURIComponent(it) +
                "=" +
                encodeURIComponent(data[it]) +
                "&";
            }
            ret = ret.slice(0, -1); // 去掉最后的空行
            return ret;
          }
        ],
        headers: {
          "Content-Type": "application/x-www-form-urlencoded"
        }
      })
        .then(response => {
          console.log(response);
        })
        .catch(error => {
          console.log(error);
        });

 

axios post提交数据格式不对的问题

标签:for   nsf   content   count   response   color   class   head   url   

原文地址:http://www.cnblogs.com/chenzeyongjsj/p/8109740.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!