内容分类操作
获取内容分类详情
var axios = require('axios').create({
withCredentials: true
})
axios.get('https://cloud.minapp.com/userve/v2.2/content/1/category/1/').then(res => {
console.log(res.data)
}){
"id": 1,
"name": "category",
"parent": null,
"subcategories": [
{
"id": 2,
"name": "subcategory",
"parent": {
"id": 1,
"name": "category"
},
"subcategories": [],
"created_at": 1519901783,
"updated_at": 1519901783
}
],
"created_at": 1516963449,
"updated_at": 1516963449
}参数
类型
说明
获取内容分类列表
创建内容分类
参数
类型
必填
说明
编辑内容分类
删除内容分类
Last updated
Was this helpful?