Changes between Version 6 and Version 7 of app2.0/13_collect


Ignore:
Timestamp:
02/12/2015 06:12:42 PM (11 years ago)
Author:
pengzhanxuan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • app2.0/13_collect

    v6 v7  
    159159} 
    160160}}} 
     161 
     162== 判断用是否已收藏爆料 == 
     163 
     164> /app/my/collect/getTopicCollectCount.do 
     165 
     166**说明** 
     167 
     168> 获取某个爆料的收藏数量 
     169 
     170**提交方式** 
     171 
     172> GET 
     173 
     174**参数** 
     175 
     176||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =|| 
     177||common_session_id||-||String||""||是|| 
     178||topicId||爆料id||int||0||是|| 
     179 
     180**返回** 
     181 
     182{{{#!java 
     183result { 
     184    status: 1 
     185        msg: '请求成功', 
     186        hasCollect: 0,  // 0 表示未收藏   1 表示已收藏 
     187} 
     188}}}