index控制器的代码

Original 2019-05-09 19:26:39 365
abstract: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(); 
    }
}


Correcting teacher:查无此人Correction time:2019-05-10 14:22:12
Teacher's summary:完成的不错,return $this->fetch(); 只是展示页面,要多写点逻辑。继续加油。

Release Notes

Popular Entries