依崇稀

导航

 
namespace app\index\controller\one;

use think\Controller;

class Blog extends Controller
{
    public function index()
    {
        return $this->fetch();
    }
    
    public function add()
    {
        return $this->fetch();
    }
    
    public function edit($id)
    {
        return $this->fetch('edit:'.$id);
    }
}

我们就可以直接访问下面的URL地址了:

http://serverName/index.php/index/one/Blog
posted on 2020-05-08 08:50  依崇稀  阅读(138)  评论(0编辑  收藏  举报