前言
眾所周知我們大家在用laravel 進行開發的時候,特別是前後端完全分離的時候,由於前端項目運行在自己機器的指定端口(也可能是其他人的機器) , 例如localhost:8000 , 而laravel 程式又運行在另一個端口,這樣就跨域了,而由於瀏覽器的同源策略,跨域請求是非法的。其實這個問題很好解決,只要增加一個中間件就可以了。下面話不多說了,來隨著小編一起看看詳細的解決方案。
解決方案:
1、新一個中間件
php artisan make:middleware EnableCrossRequestMiddleware
2、書寫中間件內容
<?php namespace App\Http\Middleware; use Closure; class EnableCrossRequestMiddleware { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); $origin = $request->server('HTTP_ORIGIN') ? $request->server('HTTP_ORIGIN') : ''; $allow_origin = [ 'http://localhost:8000', ]; if (in_array($origin, $allow_origin)) { $response->header('Access-Control-Allow-Origin', $origin); $response->header('Access-Control-Allow-Headers', 'Origin, Content-Type, Cookie, X-CSRF-TOKEN, Accept, Authorization, X-XSRF-TOKEN'); $response->header('Access-Control-Expose-Headers', 'Authorization, authenticated'); $response->header('Access-Control-Allow-Methods', 'GET, POST, PATCH, PUT, OPTIONS'); $response->header('Access-Control-Allow-Credentials', 'true'); } return $response; } }
$allow_origin 陣列變數就是你允許跨域的清單了,可自行修改。
3、然後在核心檔案註冊該中間件
protected $middleware = [ // more App\Http\Middleware\EnableCrossRequestMiddleware::class, ];
在 App\Http\Kernel 類別的 $middleware 屬性添加,這裡註冊的中間件屬於全域中間件。
然後你會發現前端頁面已經可以發送跨域請求了。
會多出一次 method 為 options 的請求是正常的,因為瀏覽器要先判斷該伺服器是否允許該跨網域請求。
總結
#以上是laravel開發中關於跨域的解決方法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!