В моем приложении я уже успешно выполнил запросы GET, POST и DELETE, но это мой первый запрос PUT.Я также проверил, что у моего API нет проблем с запросом напрямую от почтальона.
Итак, похоже, это связано с Angular, вот мой код:
const httpOptions = {
headers: new HttpHeaders({'Content-Type': 'application/json'})
};
export class TournamentService {
update(tournament: Tournament, tab: string): Observable<any> {
const tournamentUrl = this.tournamentsUrl + tournament.slug;
console.log(tournamentUrl); // URL is OK
return this.http.put(tournamentUrl, tournament, httpOptions).pipe(
catchError(this.handleError<any>('updateTournamentGeneral'))
);
}
}
Я получаю сообщение об ошибке CORS:
Failed to load https://api.kz-api.test/tournaments/fake-tournoi: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:4200' is therefore not allowed access.
Blocked current origin from receiving cross-site document at https://api.kz-api.test/tournaments/fake-tournoi with MIME type text/html.
Но что касается меня, я явно прошу, чтобы тип MIME был application/json
Вот мой код Middleware в Lumen на стороне API:
class CorsMiddleware
{
public function handle($request, \Closure $next)
{
$headers = [
'Content-type' => 'application/json;charset=UTF-8',
'Access-Control-Allow-Origin' => '*',
'Access-Control-Allow-Methods' => 'HEAD,GET,POST,PUT,PATCH,DELETE,OPTIONS',
'Access-Control-Allow-Credentials' => 'true',
'Access-Control-Max-Age' => '86400',
'Access-Control-Allow-Headers' => $request->header('Access-Control-Request-Headers')
];
if ($request->isMethod('OPTIONS')) {
return response()->json('{"method":"OPTIONS"}', 200, $headers);
}
$response = $next($request);
foreach ($headers as $key => $value) {
$response->headers->set($key, $value);
}
return $response;
}
}
Есть идеи, как решить эту проблему?