suchen

Heim  >  Fragen und Antworten  >  Hauptteil

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 Tage vor551

Antworte allen(2)Ich werde antworten

  • 为情所困

    为情所困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)

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

    Antwort
    0
  • 滿天的星座

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

    angular跨域使用 jsonp,当然前提是你的服务器返回的是 jsonp 格式。

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

    Antwort
    0
  • StornierenAntwort