响应标头名称“ Access-Control-Allow-Origin”包含无效字符,将中止rew#quest

时间:2018-09-20 12:37:26

标签: laravel laravel-5 cors laravel-5.2

我有一个laravel应用程序(在heroku上部署),在该应用程序中我收到500个内部服务器错误。

当我检查日志时,标题中出现错误方法:

响应标头名称'Access-Control-Allow-Origin'包含无效字符,正在中止请求

我有一个带有以下代码的cors中间件:

public function handle($request, Closure $next)
{
header('Access-Control-Allow-Origin : *');
header('Access-Control-Allow-Headers : Content-type, 
X-Auth-Token, Authorization, Origin');
return $next($request);
}

我在做什么错了?

1 个答案:

答案 0 :(得分:0)

使用此程序包,我花了很多时间为我工作。 https://github.com/barryvdh/laravel-cors