当我从 Angular 应用程序向 Laravel 发送呼叫时,出现以下问题
从源“ http://localhost:4200 ”访问“ http://localhost:8083/api/login_otp ”处的 XMLHttpRequest已被 CORS 策略阻止:Access-Control-Allow-Headers 不允许请求标头字段 ip在预检响应中。
我找到了一个解决方案,并在 CROS.php 中进行了以下更改
public function handle($request, Closure $next)
{
return $next($request)
->header('Access-Control-Allow-Origin', '*')
->header('Access-Control-Allow-Methods', 'GET, POST, PATCH, PUT, DELETE, OPTIONS')
->header('Access-Control-Allow-Headers', 'Origin, Content-Type, X-Auth-Token, Authorization, X-Requested-With, x-xsrf-token');
}
我在 Access-Control-Allow-Headers 中添加了 x-xsrf-token,但我仍然遇到同样的错误。