request->isGet()) { $shopId = $this->request->get('shop_id', '', 'trim'); $validate = Validate::rule('shop_id', 'require|integer|gt:0'); if(!$validate->check(['shop_id'=>$shopId])) { return JsonServer::error($validate->getError()); } $data = ShopGoodsCategoryLogic::getShopGoodsCategory($shopId); return JsonServer::success('获取店铺分类成功', $data); }else{ return JsonServer::error('请求类型错误'); } } }