一、问题描述

  1. 当我在使用ionic发送post请求时,无论是设置全局Content-Type还是单个请求的Content-Type在发送请求时均不会带Content-Type信息。
  2. ionic版本:v1.3.3
  3. 我的代码:
$http({
      method: "POST",
      url: "http://localhost:8080/api/v1/listfile",
    }).success(function(result) {

    }).error(function(error) {

    });

二、原因

如果post请求未设置请求参数,Content-Type会被删除

file
file

三、解决办法

添加post参数就行