Laravel 4 CORS问题

时间:2016-06-24 23:18:11

标签: php api laravel ionic-framework cors

我正在开发一款使用Laravel 4 API服务器和离子框架的应用。每当我向端点发出请求时,都会收到403禁用错误。 这是我当前的config.php文件。

<?php

'defaults' => array(
    'supportsCredentials' => false,
    'allowedOrigins' => array('*'),
    'allowedHeaders' => array('*'),
    'allowedMethods' => array('*'),
    'exposedHeaders' => array('*'),
    'maxAge' => 0,
    'hosts' => array(),
),

'paths' => array(
    'api/v1/*' => array(
        'allowedOrigins' => array('*'),
        'allowedHeaders' => array('*'),
        'allowedMethods' => array('*'),
        'maxAge' => 3600,
    )
),

);

根据我的理解,这应该有效。我已经尝试了很多东西。对于前者在chrome上,我安装了CORS扩展。什么都没有奏效。

以下是chrome控制台中错误的图像。 Here is the image of the error in the chrome console.

提前致谢!

0 个答案:

没有答案