摘要:本章主要学习了框架的下载、搭建和后台页面的渲染方法,通过学习,渲染了后台模板,代码如下:application\admin\index.php:<?php namespace app\admin\controller; use think\Controller; class Index extends Controller {
本章主要学习了框架的下载、搭建和后台页面的渲染方法,通过学习,渲染了后台模板,代码如下:
application\admin\index.php:
<?php
namespace app\admin\controller;
use think\Controller;
class Index extends Controller
{
public function index()
{
return $this->view->fetch();
}
public function welcome()
{
return $this->view->fetch();
}
}效果如下:

批改老师:查无此人批改时间:2019-04-25 13:36:26
老师总结:完成的不错,页面出来了,就要赶紧写逻辑了。继续加油。