// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\api\controller; use app\api\model\Article as ArticleModel; use think\response\Json; /** * 文章控制器 * Class Article * @package app\api\controller */ class Article extends Controller { /** * 文章列表 * @param int $categoryId * @return Json * @throws \think\db\exception\DbException */ public function list(int $categoryId = 0): Json { $model = new ArticleModel; $title = (string)$this->request->input('title'); $list = $model->getList($categoryId, 15, $title); return $this->renderSuccess(compact('list')); } /** * 文章详情 * @param int $articleId * @return Json * @throws \cores\exception\BaseException */ public function detail(int $articleId): Json { $detail = ArticleModel::getDetail($articleId); return $this->renderSuccess(compact('detail')); } public function helpCenter(): Json { $model = new ArticleModel; $list = $model->helpCenter(); return $this->renderSuccess(compact('list')); } }