想处理的代码 $updated = Account::where(['uuid'=>$account])->update(['user'=>$user]); return $updated ? [ 'code'=>200,'message'=>'更换别称成功' ] : throw new Exception('更换别称失败',124501); 代码已经在中间件中间进行了 try catc...
今天升级了下webman版本,出现 Missing input parameter webman 问题出在声明路由路径中 Route::fallback(function($request){ return json(['err' => 404, 'msg'=>'Route 404']); }); 将 $request 去除即可...