Blogger Information
Blog 16
fans 0
comment 2
visits 16305
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
第二节:TP5.0.22如何使用控制器调度模版。
长沙php专家
Original
839 people have browsed it

控制器修改.png

访问模版View,需要修改控制器

<?php
namespace app\index\controller;
use think\Controller;     
class Index extends Controller
{
    public function index()
    {   return $this->fetch();
        //fetch方法可以在 thinkphp/library/think/Controller.php查看,框架已经帮我们写好了。 
        //因为要使用框架的fetch方法,所以要用use think\Controller; 来说明当前控制器脚本需要用这个方法。
    } 
}

index.png

实例

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
	</head>
	<body>
		<p>控制器controller访问模版view</p>
	</body>
</html>

这个时候,控制器来调度模版文件输出就完成了。

直接浏览器输入:127.0.0.1即可输出"控制器controller访问模版view
".

建议先看第一节:Thinkphp5.0.22完整版入口文件隐藏


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
Author's latest blog post