私のlaravelエンドポイントに次のリクエストがあります:
axios.get('http://localhost:8000/auth/login', {})
.then(function (response) {
console.log(response);
return {};
})
.catch(function (error) {
return {}
});
そして私のlaravelエンドポイントは次のように設定されました:
public function index() {
var_dump('login called.');die;
return response()->json(
[],
200
);
}
nextjs サーバー (ポート 3000) と laravel サーバー (8000) を起動しました。ブラウザーで localhost:8000/auth/login を参照すると、「ログインが呼び出されました」と表示されます。ただし、その axios 呼び出しを行うと、ステータス 200ok が返されますが、応答データはありません。
Request URL:http://localhost:8000/auth/login
Request Method:GET
Status Code:200 OK
Remote Address:127.0.0.1:8000
Referrer Policy:no-referrer-when-downgrade
私が間違っていることは何ですか?