4

我正在尝试使用 ngResource 来查询 REST API。我需要在自定义标头中指定我的 API 密钥。我试过这样:

angular.module('ApiService', ['ngResource'])

  .factory('Api', ['$resource', function($resource) {

    this.apiEndpoint = '';
    this.apiKey = '';

    return {

      init: function(apiEndpoint, apiKey) {
        this.apiEndpoint = apiEndpoint;
        this.apiKey = apiKey;
      },

      get: function(collection) {
        return $resource(this.apiEndpoint + 'api/1/' + collection, {},
          {
            get: {
              method: 'JSONP',
              headers: {'api_key': this.apiKey},
              params: {callback: 'JSON_CALLBACK'}
            }
          }
        ).get();
      }

    };

  }]);

然后我在我的控制器中使用它:

app.controller('MyCtrl', function ($scope, Api, ENV) {
  Api.init(ENV.apiEndpoint, ENV.apiKey);
  var widgets = Api.get('widgets');
});

检查 XHR 时未设置我的自定义标题。.get()另外,为什么 XHR 不会运行,直到我在初始方法之后调用空$resource:get()

我也尝试$httpResource直接设置标题:

  .config(function($httpProvider) {
    $httpProvider.defaults.headers.get  = {'api_key': 'abc123'};
  })

但是当我检查网络请求时,这仍然没有设置自定义标头。我错过了什么?

4

1 回答 1

0

当然,这个问题是我在这个请求中使用了 JSONP,它不包括在发出请求时制作标头的能力。了解如何更改 angularjs $http.jsonp 的标头

具体来说,JSONP 只是<script>在 DOM 底部包含一个标签以加载跨域 javascript,因此由您的浏览器发送默认标头。

于 2014-10-17T15:30:21.207 回答