本章主要学习了框架的下载、搭建和后台页面的渲染方法,通过学习,渲染了后台模板,代码如下:
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(); } }
效果如下: