FAQ

分类列表

接口(GET):

  1. /api/v1/faq/categories

请求参数:

参数 默认值 说明
page_size 10 每页显示条数
page 1 页码

返回参数:

  1. {
  2. "data": [
  3. {
  4. "id": 1,
  5. "name": "分类一",
  6. "sort": 1
  7. },
  8. {
  9. "id": 2,
  10. "name": "分类二",
  11. "sort": 2
  12. },
  13. {
  14. "id": 3,
  15. "name": "分类三",
  16. "sort": 3
  17. }
  18. ],
  19. "links": {
  20. "first": "http://127.0.0.1:8000/api/v1/faq/categories?page=1",
  21. "last": "http://127.0.0.1:8000/api/v1/faq/categories?page=1",
  22. "prev": null,
  23. "next": null
  24. },
  25. "meta": {
  26. "current_page": 1,
  27. "from": 1,
  28. "last_page": 1,
  29. "path": "http://127.0.0.1:8000/api/v1/faq/categories",
  30. "per_page": 10,
  31. "to": 3,
  32. "total": 3
  33. }
  34. }

返回参数不解释了,你懂得。

分类详情

接口(GET):

  1. /api/v1/faq/category/{id}

请求参数:

返回参数:

  1. {
  2. "data": {
  3. "id": 1,
  4. "name": "分类一",
  5. "sort": 1
  6. }
  7. }

文章列表

接口(GET):

  1. /api/v1/faq/category/{category_id}/articles

请求参数:

参数 默认值 说明
page_size 10 每页显示条数
page 1 页码

返回参数:

  1. {
  2. "data": [
  3. {
  4. "id": 1,
  5. "title": "我是文章一",
  6. "created_at": 1539569104,
  7. "administrator": {
  8. "name": "超级管理员"
  9. }
  10. }
  11. ],
  12. "links": {
  13. "first": "http://127.0.0.1:8000/api/v1/faq/category/1/articles?page=1",
  14. "last": "http://127.0.0.1:8000/api/v1/faq/category/1/articles?page=1",
  15. "prev": null,
  16. "next": null
  17. },
  18. "meta": {
  19. "current_page": 1,
  20. "from": 1,
  21. "last_page": 1,
  22. "path": "http://127.0.0.1:8000/api/v1/faq/category/1/articles",
  23. "per_page": 10,
  24. "to": 1,
  25. "total": 1
  26. }
  27. }

文章详情

接口(GET):

  1. /api/v1/faq/article/{article_id}

请求参数:

返回参数:

  1. {
  2. "data": {
  3. "id": 1,
  4. "title": "我是文章一",
  5. "created_at": 1539569104,
  6. "content": "<h6>我是文章一</h6>",
  7. "administrator": {
  8. "name": "超级管理员"
  9. }
  10. }
  11. }

最近文章

接口(GET):

  1. /api/v1/faq/article/latest

请求参数:

参数 默认值 说明
page_size 10 每页显示条数
page 1 页码

返回参数:

  1. {
  2. "data": [
  3. {
  4. "id": 1,
  5. "title": "我是文章一",
  6. "created_at": 1539569104,
  7. "administrator": {
  8. "name": "超级管理员"
  9. },
  10. "category": {
  11. "id": 1,
  12. "name": "分类一",
  13. "sort": 1
  14. }
  15. }
  16. ],
  17. "links": {
  18. "first": "http://127.0.0.1:8000/api/v1/faq/article/latest?page=1",
  19. "last": "http://127.0.0.1:8000/api/v1/faq/article/latest?page=1",
  20. "prev": null,
  21. "next": null
  22. },
  23. "meta": {
  24. "current_page": 1,
  25. "from": 1,
  26. "last_page": 1,
  27. "path": "http://127.0.0.1:8000/api/v1/faq/article/latest",
  28. "per_page": 10,
  29. "to": 1,
  30. "total": 1
  31. }
  32. }