每個(gè)請(qǐng)求都有響應(yīng)。Laravel提供了幾種不同的方法來(lái)返回響應(yīng)。響應(yīng)可以是來(lái)自路由或控制器發(fā)送。發(fā)送基本響應(yīng) - 如在下面示例代碼所示出的簡(jiǎn)單字符串。該字符串將被自動(dòng)轉(zhuǎn)換為相應(yīng)的HTTP響應(yīng)。
app/Http/routes.php
Route::get('/basic_response', function () { return 'Hello World'; });
http://localhost:8000/basic_response
響應(yīng)可以使用header()方法附加到頭。我們還可以將一系列報(bào)頭添加,如下示例代碼所示。
return response($content,$status) ->header('Content-Type', $type) ->header('X-Header-One', 'Header Value') ->header('X-Header-Two', 'Header Value');
app/Http/routes.php
Route::get('/header',function(){ return response("Hello", 200)->header('Content-Type', 'text/html'); });
http://localhost:8000/header
withcookie()輔助方法用于附加 cookies。使用這個(gè)方法生成的 cookie 可以通過(guò)調(diào)用withcookie()方法響應(yīng)實(shí)例附加。缺省情況下,通過(guò)Laravel 生成的所有cookie被加密和簽名,使得它們不能被修改或由客戶端讀取。
app/Http/routes.php
Route::get('/cookie',function(){ return response("Hello", 200)->header('Content-Type', 'text/html') ->withcookie('name','Virat Gandhi'); });
http://localhost:8000/cookie
JSON響應(yīng)可以使用 json 方法發(fā)送。這種方法會(huì)自動(dòng)設(shè)置Content-Type頭為application/json。JSON的方法將數(shù)組自動(dòng)轉(zhuǎn)換成合適的JSON響應(yīng)。
app/Http/routes.php
Route::get('json',function(){ return response()->json(['name' => 'Yiibai', 'state' => 'Hainan']); });
http://localhost:8000/json