快速生成控制器类

执行下面的指令可以生成index模块的Blog控制器类库文件

  1. >php think make:controller index/Blog

生成的控制器类文件如下:

  1. <?php
  2. namespace app\index\controller;
  3. use think\Controller;
  4. use think\Request;
  5. class Blog extends Controller
  6. {
  7. /**
  8. * 显示资源列表
  9. *
  10. * @return \think\Response
  11. */
  12. public function index()
  13. {
  14. //
  15. }
  16. /**
  17. * 显示创建资源表单页.
  18. *
  19. * @return \think\Response
  20. */
  21. public function create()
  22. {
  23. //
  24. }
  25. /**
  26. * 保存新建的资源
  27. *
  28. * @param \think\Request $request
  29. * @return \think\Response
  30. */
  31. public function save(Request $request)
  32. {
  33. //
  34. }
  35. /**
  36. * 显示指定的资源
  37. *
  38. * @param int $id
  39. * @return \think\Response
  40. */
  41. public function read($id)
  42. {
  43. //
  44. }
  45. /**
  46. * 显示编辑资源表单页.
  47. *
  48. * @param int $id
  49. * @return \think\Response
  50. */
  51. public function edit($id)
  52. {
  53. //
  54. }
  55. /**
  56. * 保存更新的资源
  57. *
  58. * @param \think\Request $request
  59. * @param int $id
  60. * @return \think\Response
  61. */
  62. public function update(Request $request, $id)
  63. {
  64. //
  65. }
  66. /**
  67. * 删除指定资源
  68. *
  69. * @param int $id
  70. * @return \think\Response
  71. */
  72. public function delete($id)
  73. {
  74. //
  75. }
  76. }

默认生成的控制器类继承\think\Controller ,并且生成了资源操作方法,如果仅仅生成空的控制器则可以使用:

  1. >php think make:controller index\Blog --plain

快速生成模型类

执行下面的指令可以生成index模块的Blog模型类库文件

  1. >php think make:model index/Blog

生成的模型类文件如下:

  1. namespace app\index\model;
  2. use think\Model;
  3. class Blog extends Model
  4. {
  5. }