find($app_id); } /** * 从缓存中获取app信息 */ public static function getAppOpenCache($app_id = null) { if (is_null($app_id)) { $self = new static(); $app_id = $self::$app_id; } if (!$data = Cache::get('app_open_' . $app_id)) { $data = self::detail($app_id); if (empty($data)) throw new BaseException(['msg' => '未找到当前app信息']); Cache::tag('cache')->set('app_open_' . $app_id, $data); } return $data; } }