創(chuàng)建類庫文件
快速生成控制器類
執(zhí)行下面的指令可以生成index
模塊的Blog
控制器類庫文件
>php think make:controller index/Blog
生成的控制器類文件如下:
<?php
namespace app\index\controller;
use think\Controller;
use think\Request;
class Blog extends Controller
{
/**
* 顯示資源列表
*
* @return \think\Response
*/
public function index()
{
//
}
/**
* 顯示創(chuàng)建資源表單頁.
*
* @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)
{
//
}
}
默認(rèn)生成的控制器類繼承\think\Controller
,并且生成了資源操作方法,如果僅僅生成空的控制器則可以使用:
>php think make:controller index\Blog --plain
快速生成模型類
執(zhí)行下面的指令可以生成index
模塊的Blog
模型類庫文件
>php think make:model index/Blog
生成的模型類文件如下:
namespace app\index\model;
use think\Model;
class Blog extends Model
{
}
文檔最后更新時(shí)間:2018-04-26 11:01:52
未解決你的問題?請(qǐng)到「問答社區(qū)」反饋你遇到的問題