企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
~~~ 错:use think\facade\Request; 正确:use think\Request; 错:Request::except('id,name'); 正确:$request->except('id,name'); ~~~ 其他方式 ~~~ 数组: Request::except(['id','name']); 指定变量类型获取: Request::except(['id','name'], 'get'); Request::except(['id','name'], 'post'); ~~~