User-post
Api:/api/user/post
Methods:POST, PUT, PATCH, DELETE
Permission:unlimited
Login auth:Yes
Request and parameters:
"""
POST:
内容发布
title:<str>, 标题
content:<str>, 内容(比如:富文本的html内容),将会保存到数据库中
conetent_text:<str>, 纯文本内容
editor:<str>, 使用的编辑器类型, "markdown" or "rich_text"
tags:<array>, 标签
category:<str>, post category id. post分类
cover_url:<str>,文章封面图url,默认为空
issue_way:<str>, 可选'issue' or 'save'. 发布或者保存为草稿
PUT or PATCH:
1.内容修改
id:<str>, 编辑已有的文章需要传入id, 新建文章不需要
title:<str>, 标题
content:<str>, 内容(比如:富文本的html内容),将会保存到数据库中
conetent_text:<str>, 纯文本内容
editor:<str>, 使用的编辑器类型, "markdown" or "rich_text"
tags:<array>, 标签
category:<str>, post category id. post分类
issue_way:<str>, 可选'issue' or 'save'. 发布或者保存为草稿
2.恢复回收站的post
op:<str>, restore
ids:<array>, posts id
DELETE:
删除post
ids:<array>, posts id
recycle:<int>,1 or 0, 1:则移入回收站, 0: 则直接标记为永久删除, 管理员才可见
*## Api文档说明