創建類庫文件
快速生成控制器類
執行下面的指令可以生成index模塊的Blog控制器類庫文件
>php think make:controller index/Blog
生成(cheng)的(de)控制器(qi)類文件(jian)如下(xia):
<?php
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 ,并且生成了資源操作方法,如果(guo)僅僅生成空的控(kong)制器則(ze)可(ke)以使用:
>php think make:controller index\Blog --plain
快速生成模型類
執行下面的指令可以生成index模塊的Blog模型類庫文件
>php think make:model index/Blog
生成的模型類文(wen)件如下:
namespace app\index\model;
use think\Model;
class Blog extends Model
{
}
文檔最后更新時間:2018-04-26 11:01:52
未解決你的問題?請到「問答社區」反饋你遇到的問題
