1

当我使用该服务$http时,我收到 RC 版本的错误。出于某种奇怪的原因,它在 1.0.8 中运行良好。

angular.factory('test', function($http) {
    return {
        get_it: function(id, callback) {
            $http.get('/get_info/' + id);
        }
});

我在 1.0.8 中获得了正确的 JSON 数据,但是,在 1.2-RC 版本中,ajax 请求甚至没有命中 url /test,而是当前 URI 并返回给我一个 HTML 转储。我试图追踪后端。在 $http 的 1.2 和 1.0.8 中有哪些我不知道的变化?

4

1 回答 1

0

找到了答案,看起来 x-Request-With 标头已被删除。

来源:https ://github.com/angular/angular.js/issues/1004

于 2013-10-01T18:30:50.130 回答