gpt4 book ai didi

angularjs - Laravel angularJS CORS 使用 barryvdh/laravel-cors

转载 作者:行者123 更新时间:2023-12-05 00:25:56 24 4
gpt4 key购买 nike

已经六个小时了,我仍然没有得到以下问题的解决方案。

我试图让 AngularJS 从不同的域访问我的 API。在网上搜索后,我找到了这个 package它说它可以“在您的 Laravel 应用程序中添加 CORS(跨源资源共享) header 支持”

我遵循了所有说明。设置这个和那个让它工作,但仍然没有运气。我的服务器总是向我发送相同的以下错误:

XMLHttpRequest cannot load http://lab.laracon/v1/lists?id=123&password=whatever&username=OSVC8HKKcvCFrsqXsMcbOVwVQvOL0wr3. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://lab.angularapi' is therefore not allowed access.



这是我的 Angular 代码:
var Demo = angular.module( "Demo", [ "ngResource" ] );
Demo.controller(
"ListController"
function( $scope, ,$http, $resource ) {

$http.defaults.useXDomain = true;

$scope.useResource = function() {
var Lists = $resource('http://lab.laracon/v1/lists', {
username: 'OSVC8HKKcvCFrsqXsMcbOVwVQvOL0wr3',
password: 'whatever'
});
Lists.get({
id: 1
}, function(data) {
alert(data.ok);
});
};

}
);

这是我的 barryvdh laravel-cors 配置文件:
'defaults' => array(
'allow_credentials' => false,
'allow_origin' => array(),
'allow_headers' => array(),
'allow_methods' => array(),
'expose_headers' => array(),
'max_age' => 0,
),

'paths' => array(
'^/v1/' => array(
'allow_origin' => array('*'),
// 'allow_headers' => array('Content-Type'),
'allow_headers' => array('*'),
'allow_methods' => array('POST', 'PUT', 'GET', 'DELETE', 'OPTIONS'),
'max_age' => 3600,
),
),

最后这是我的 nginx 服务器配置:
location / {

# URLs to attempt, including pretty ones.
try_files $uri $uri/ /index.php?$query_string;

add_header 'Access-Control-Allow-Origin' 'http://lab.angularapi';
add_header 'Access-Control-Allow-Credentials' 'false';
add_header 'Access-Control-Allow-Headers' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS, PUT, DELETE';

}

谁能帮我?我的代码和配置有什么问题?谢谢

最佳答案

最后,我找到了适合我的情况的正确解决方案:

  • 我完全摆脱了 barryvdh/laravel-cors
  • 感谢 Dan Horrigan 的推文

  • Simple CORS with laravel

    但是,我稍微更改了代码(我真的不知道为什么 $response->headers->set(); 不起作用。相反,我将其添加到我的 Controller 中:
    public function __construct()
    {
    $this->afterFilter(function(){

    header('Access-Control-Allow-Origin: *');

    });
    }

    它像老板一样工作:)

    关于angularjs - Laravel angularJS CORS 使用 barryvdh/laravel-cors,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23135127/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com