index控制器的代码

原创 2019-05-09 19:26:39 504
摘要:index控制器的代码 <?php namespace app\admin\controller; use think\Controller; class Index extends Controller {     public function index()  &
index控制器的代码
<?php
namespace app\admin\controller;

use think\Controller;

class Index extends Controller
{
    public function index()
    {
       return $this->fetch(); 
    }
	
    public function welcome()
    {
       return $this->fetch(); 
    }
}


批改老师:查无此人批改时间:2019-05-10 14:22:12
老师总结:完成的不错,return $this->fetch(); 只是展示页面,要多写点逻辑。继续加油。

发布手记

热门词条