ArticlesController.php 817 B

123456789101112131415161718192021222324
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: pl125 <xskjs888@163.com>
  8. // +----------------------------------------------------------------------
  9. namespace api\demo\controller;
  10. use cmf\controller\RestBaseController;
  11. class ArticlesController extends RestBaseController
  12. {
  13. public function index()
  14. {
  15. $articles = [
  16. ['title' => 'article title1'],
  17. ['title' => 'article title2'],
  18. ];
  19. $this->success('请求成功!', ['articles' => $articles]);
  20. }
  21. }