当前位置:首页 > CMS教程 > 其它CMS > 列表

Laravel5.1 框架响应基本用法实例分析

发布:smiling 来源: PHP粉丝网  添加日期:2022-02-02 10:49:22 浏览: 评论:0 

本文实例讲述了Laravel5.1 框架响应基本用法,分享给大家供大家参考,具体如下:

上篇笔记刚刚记录完请求 这节就来说说响应,一般来说啊 一个请求对应一个响应,用户都请求咱了 咱必须做一些逻辑后给人家反馈是不是,这就是响应。

1 基本的响应

我们前几篇笔记已经用过很多响应了,其中包括字符串:

  1. Route::get('/'function () { 
  2.   return '欢迎欢迎'
  3. }); 

注:我们写的是返回简单的字符串,但是Laravel框架会自动把它组成一个响应。

1.1 自定义响应头

  1. Route::get('/'function () { 
  2.   return (new \Illuminate\Http\Response('hello', 200))->header('Content-Type''text/html'); 
  3. }); 

我们还可以使用response全局帮助函数来生成相应,如果想要指定多个响应头 可以链式操作↓

  1. Route::get('/'function () { 
  2.   return response('hello'
  3.     ->header('Content-Type''text/html'
  4.     ->header('something''something'); 
  5. }); 

1.2 添加cookie信息

我们可以使用withCookie函数来添加cookie信息。

  1. Route::get('/'function () { 
  2.   return response('hello'
  3.     ->header('Content-Type''text/html'
  4.     ->withCookie('cookie-name''value'); 
  5. }); 

1.3 返回视图

之前我们使用的是帮助函数view(),今天来点儿麻烦的- -:

  1. Route::get('/'function () { 
  2.   return response() 
  3.     ->view('welcome'
  4.     ->withCookie('newCookie''home'); 
  5. }); 

1.4 返回JSON

当我们开发API时 JSON是必须会的哦:

  1. Route::get('/'function () { 
  2.   return response() 
  3.     ->json([ 
  4.       "name" => "k"
  5.       "age" => 24 
  6.     ]); 
  7. }); 

1.5 重定向

重定向我们之前也使用过,回顾下吧:

  1. Route::get('/'function () { 
  2.   return redirect()->action('Admin\HomeController@index'); 
  3. }); 

有的时候啊 我们需要重定向到当前页面的前一个位置,可以用back函数:

  1. Route::get('/'function () { 
  2.   // withInput可以将之前页面用户输入的信息一起返回去,这样方便用户不用重复输入。 
  3.   return back()->withInput(); 
  4. }); 

当用户输入正确后重定向 应该给人家一些提示是吧 我们可以用一次性的session来传递:

  1. Route::get('/'function () { 
  2.   return redirect()->action('Admin\HomeController@index')->with('status''Success'); 
  3. }); 
  4.   @if(session('status')) 
  5.     <div class="alert alert-success"
  6.       {{ session('status') }} 
  7.     </div> 
  8.   @endif

Tags: Laravel5.1响应基本用法

分享到: