Skip to content

Latest commit

 

History

History
53 lines (39 loc) · 1.83 KB

图文消息.md

File metadata and controls

53 lines (39 loc) · 1.83 KB

图文

我们把包含文字说明和一组图片的对象称为图文,或者图文消息。

请求PATH

  • /news
  • /news/:id
  • /news/totals

支持接口

  • create()
  • getList(),
  • getItemById()
  • updateItemById()
  • deleteItemById()
  • getTotals()

实例对象

{
    "_id": "1234567890898",
    "cid": "yree64564646464",
    "tid": "fsfsfsfsfsfsf",
    "title": "标题栏填写标题",
	"overview": "概述,详细描述内容",
    "linkUrl": "http://www.google.com"
    "urls": ["http://cos.jikeyiyong.com/sdfsfsrrrrr/1.jpg"],
	"status": 1,
    "update": 12345678866,
}

参数说明

参数名 必选 类型 说明
_id string 由服务器自动生成id,每添加一条数据,服务器自动生成
title string 图文标题
overview string 概述概述,一般为一段文字。
tid string 分组id
cid string 分类id
urls string[] 图文中图片的浏览链接地址
update long 更新时间戳,单位为毫秒级别,从1970-1-1 到更新时刻的毫秒级,
status int 0: 表示 禁止该项,1:表示使能该项。 由后端控制,前台配合显示或不显示的状态时,判断该标志位。

关于各个接口返回值说明以及含义, 接口模型定义