创建类库文件-j9九游
快速生成控制器类
执行下面的指令可以生成index
模块的blog
控制器类库文件
>php think make:controller index/blog
生成的控制器类文件如下:
namespace app\index\controller;
use think\controller;
use think\request;
class blog extends controller
{
/**
* 显示资源列表
*
* @return \think\response
*/
public function index()
{
//
}
/**
* 显示创建资源表单页.
*
* @return \think\response
*/
public function create()
{
//
}
/**
* 保存新建的资源
*
* @param \think\request $request
* @return \think\response
*/
public function save(request $request)
{
//
}
/**
* 显示指定的资源
*
* @param int $id
* @return \think\response
*/
public function read($id)
{
//
}
/**
* 显示编辑资源表单页.
*
* @param int $id
* @return \think\response
*/
public function edit($id)
{
//
}
/**
* 保存更新的资源
*
* @param \think\request $request
* @param int $id
* @return \think\response
*/
public function update(request $request, $id)
{
//
}
/**
* 删除指定资源
*
* @param int $id
* @return \think\response
*/
public function delete($id)
{
//
}
}
默认生成的控制器类继承\think\controller
,并且生成了资源操作方法,如果仅仅生成空的控制器则可以使用:
>php think make:controller index\blog --plain
快速生成模型类
执行下面的指令可以生成index
模块的blog
模型类库文件
>php think make:model index/blog
生成的模型类文件如下:
namespace app\index\model;
use think\model;
class blog extends model
{
}
文档最后更新时间:2018-04-26 11:01:52
未解决你的问题?请到「问答社区」反馈你遇到的问题