📻

ApiController

要求

  • 存在对应的 Dao 文件
<?php namespace Controller; use Util\ApiController; class NameApi extends Manage { // 引入之后该控制器自动实现了增删改查的接口 use ApiController; // 如果不填模块名则取 Controller 类名做为模块名 protected static $module = '模块名'; }