*/ namespace app\admin\behavior; use think\Request; class ApiPermission { /** * 默认行为函数 * @author zhaoxiang * @return \think\Request * @throws \think\exception\DbException */ public function run() { $request = Request::instance(); $route = $request->routeInfo(); $route = $route['route']; } }