搜尋

首頁  >  問答  >  主體

angular.js - 同樣的執行請求使用 $http 會提示跨域,但使用 jquery 的 ajax 就正常

$.ajax({
          url: api.regist,
          type: 'POST',
          dataType: 'json',
          data: {
            email: $scope.email,
            password: $scope.password
          }
        })
$http({
        url: api.regist,
        method: 'POST',
        headers: {
          'Content-Type': 'application/json'
        },
        data: {
          email: $scope.email,
          password: $scope.password
        }
      })

這兩個不應該是完全一樣的意義嘛?為什麼使用 ajax 可以執行成功,但使用 $http 就提示跨域了呢?

天蓬老师天蓬老师2745 天前552

全部回覆(2)我來回復

  • 为情所困

    为情所困2017-05-15 17:02:18

    postCfg = {
      headers: {
        'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
      },
      transformRequest: function(data) {
        return $.param(data);
      }
    }
    
    app.config([
      '$httpProvider',
      function($httpProvider) {
        $httpProvider.defaults.useXDomain = true;
        delete $httpProvider.defaults.headers.common['X-Requested-With'];
       }
    ]}
    
    $http.post(url, {}, postCfg)

    自己找到的方法,測速成功

    回覆
    0
  • 滿天的星座

    滿天的星座2017-05-15 17:02:18

    angular跨域使用 jsonp,當然前提是你的伺服器回傳的是 jsonp 格式。

    $http.jsop(url).success(fn).error(fn);

    回覆
    0
  • 取消回覆