0

我有一个带导轨后端的角度前端。

我有这样的角度代码:

$http({method: 'GET', url: 'http://localhost:3000/products.json'}).
  success(function(data, status, headers, config) {
     $scope.data = data;
  }).
  error(function(data, status, headers, config) {
     $scope.status = status;
});

我一直收到No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:4000' is therefore not allowed access.错误,所以我使用了https://stackoverflow.com/a/17815546/561634所以我的 config/application.rb 有:

config.action_dispatch.default_headers = {
  'Access-Control-Allow-Origin' => '*',
  'Access-Control-Request-Method' => '*'
}

在里面。不幸的是,这并没有改变错误。

感谢大家的帮助!

4

1 回答 1

0

确保您的后端没有会导致“500 - 内部服务器错误”的错误,因为在这种情况下,可能不会发送“访问控制”标头。

于 2013-11-05T15:29:15.860 回答