首页 > 开发 > PHP > 正文

Laravel 5框架学习之向视图传送数据

2024-05-04 23:34:00
字体:
来源:转载
供稿:网友
本文向大家展示的是Laravel5框架学习系列的第三篇文章,给大家讲解的是如何向视图传送数据,从无到有,十分细致,有需要的小伙伴可以参考下。
 

我们在Routes.php中新建一个路由

 

复制代码代码如下:

Route::get('about', 'PagesController@about');

 

在浏览器中浏览会获得一个错误,错误信息仅仅是一个提示信息,缺少细节,在生产环境 It' ok,但是开发阶段我们希望获得详细信息。

在项目的根目录找到 .env 文件,修改

 

复制代码代码如下:

APP_DEBUG=true

 

这将显示详细的错误信息,PagesController 不存在。但在生产环境一定要设置为 false

我们可以手工新建控制器,但更快的方式是利用 laravel 提供的生成器。在命令行当前项目目录中运行:

 

复制代码代码如下:

php artisan

 

可以看到laravel提供的功能。
 

  1. <?php namespace App/Http/Controllers; 
  2.  
  3. use App/Http/Requests; 
  4. use App/Http/Controllers/Controller; 
  5.  
  6. use Illuminate/Http/Request; 
  7.  
  8. class PagesController extends Controller { 
  9.  
  10.  /** 
  11.  * Display a listing of the resource. 
  12.  * 
  13.  * @return Response 
  14.  */ 
  15.  public function index() 
  16.  { 
  17.  // 
  18.  } 
  19.  
  20.  /** 
  21.  * Show the form for creating a new resource. 
  22.  * 
  23.  * @return Response 
  24.  */ 
  25.  public function create() 
  26.  { 
  27.  // 
  28.  } 
  29.  
  30.  /** 
  31.  * Store a newly created resource in storage. 
  32.  * 
  33.  * @return Response 
  34.  */ 
  35.  public function store() 
  36.  { 
  37.  // 
  38.  } 
  39.  
  40.  /** 
  41.  * Display the specified resource. 
  42.  * 
  43.  * @param int $id 
  44.  * @return Response 
  45.  */ 
  46.  public function show($id
  47.  { 
  48.  // 
  49.  } 
  50.  
  51.  /** 
  52.  * Show the form for editing the specified resource. 
  53.  * 
  54.  * @param int $id 
  55.  * @return Response 
  56.  */ 
  57.  public function edit($id
  58.  { 
  59.  // 
  60.  } 
  61.  
  62.  /** 
  63.  * Update the specified resource in storage. 
  64.  * 
  65.  * @param int $id 
  66.  * @return Response 
  67.  */ 
  68.  public function update($id
  69.  { 
  70.  // 
  71.  } 
  72.  
  73.  /** 
  74.  * Remove the specified resource from storage. 
  75.  * 
  76.  * @param int $id 
  77.  * @return Response 
  78.  */ 
  79.  public function destroy($id
  80.  { 
  81.  // 
  82.  } 
  83.  

 

复制代码代码如下:

php artisan make:controller PagesController

 

ok,在 app->http->controller 下面生成了 PagesController.php

?
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表