标签:code serve 直接 key containe ati span 访问 contain
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
标签:code serve 直接 key containe ati span 访问 contain
原文地址:https://www.cnblogs.com/mmore123/p/12848350.html