每个请求都有响应。Laravel提供了几种不同的方法来返回响应。响应可以是来自路由或控制器发送。发送基本响应 - 如在下面示例代码所示出的简单字符串。该字符串将被自动转换为相应的HTTP响应。
app/Http/routes.php
Route::get('/basic_response', function () { return 'Hello World'; });
http://localhost:8000/basic_response
响应可以使用header()方法附加到头。我们还可以将一系列报头添加,如下示例代码所示。
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。使用这个方法生成的 cookie 可以通过调用withcookie()方法响应实例附加。缺省情况下,通过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响应可以使用 json 方法发送。这种方法会自动设置Content-Type头为application/json。JSON的方法将数组自动转换成合适的JSON响应。
app/Http/routes.php
Route::get('json',function(){ return response()->json(['name' => 'zyiz', 'state' => 'Hainan']); });
http://localhost:8000/json