Laravel入门:MVC框架
程序员文章站
2022-06-10 21:26:54
...
本文基于Laravel 4.2编写。1. 路由Hello World在app/routes.php里面添加下面代码,然后在浏览器里访问http:///helloworld可以见到结果。 ```Route::get('/helloworld', function() { return 'hello world';});```2. 视图(View)理论上可以把所有代码都写在app/routes.php里面,但是这会令代码难以维护。于是,我们可以把具体的页面内容搬到视图里,让路由文件简短一些。app/routes.php ```Route::get('/helloworld', function() { return View::make('helloworld');});app/views/helloworld.php hello world ```3. 控制器(Controller) 我们写的是动态网页,页面里有变量,变量通过Controller传入View。app/routes.php(这次我们的路由要先指向Controller,然后再由Controller返回View内容) Route::get('/helloworld', 'HelloworldController@say');app/controllers/HelloworldController.php ``` {{$action}} {{$name}}
上一篇: Oracle中常见的33个等待事件小结