Admin-content-category

Api:/api/admin/content/category

Methods:GET, POST, PUT, DELETE

Permission:unlimited

Login auth:Yes

Request and parameters:

  1. """
  2. Admin管理端category管理
  3. GET:
  4. 1.获取指定的type的所有分类
  5. type:<str>, 你设置的那几个类别中的类别,在config.py文件中category, 或者网站管理设置
  6. 2.获取所有的type
  7. get_type:<int>, get_type为1
  8. POST:
  9. 添加文集
  10. name:<str>
  11. type:<str>, 只能是你设置的那几个类别,在config.py文件中category, 或者网站管理设置
  12. PUT:
  13. 修改文集
  14. id:<str>, post category id
  15. name:<str>
  16. DELETE:
  17. 删除文集名称
  18. ids:<array>, post category ids

*## Api文档说明