Blogger Information
Blog 27
fans 1
comment 0
visits 22497
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Laravel实战,使用控制器渲染视图-2019年11月4日
思杰的博客
Original
1709 people have browsed it

1、分别创建控制器、视图、路由文件

2、在控制器中模拟数据,并把数据渲染到视图中

3、使用@include将页面的header部分放到public/header.php中


1、分别创建控制器、视图、路由文件

控制器在app\Http\Controllers文件夹内创建,要记得use官方的controller类,然后要有命名空间。

视图在resources\views文件夹内创建

然后我们要在routes文件夹里面的web路由文件中,把我们的路由和访问的控制器方法写进去。就可以了


2、在控制器中模拟数据,并把数据渲染到视图中

image.png

image.png

image.png

image.png

如果我们的视图文件是blade.php结尾,那么laravel就会用blade模版引擎来把语句翻译成php文件。

3、使用@include将页面的header部分放到public/header.php中

        在实际开发过程中,头部和尾部我们可以专门放到一个视图文件中,可以减少代码复制黏贴。

        通过@include语句把这些视图代码引入进来。

image.png

image.png

Correction status:qualified

Teacher's comments:写得不错, 坚持
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments