在webman中假如想限定路由api/index/auth只能以post的方式进行请求 1.在config/route.php中写Route::post('/api/index/auth', [app\api\controller\index::class, 'auth']); 2.用annotation注解路由插件 有没有其他更好的方式?比如像.net程序中,直接在访求上加过滤属性[httppost]就可以...
使用命令 composer require -W webman/think-orm 安装think-orm时,提示如下错误 Root composer.json requires webman/think-orm ^1.0 -> satisfiable by webman/think-orm[v1.0.2]. webman/think-orm v1.0.2 requires topthink/think-or...
在控制器中用 Db::table('part')->where('id','>',6)->get()->dump(); 只是在控制台输出了获取到的数据,并未看到SQL语句的输出...