Changes between Version 16 and Version 17 of pcauto_pconline_4.0.0/intf


Ignore:
Timestamp:
03/28/2013 02:44:17 PM (13 years ago)
Author:
leijingtang
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pcauto_pconline_4.0.0/intf

    v16 v17  
    302302}}} 
    303303 
    304  
     304=== 2.8 汽车论坛的首页热门 === 
     305{{{ 
     306    url: hots 
     307    作用:获取论坛的热门帖子列表 
     308    使用范围:汽车网app:命名前缀pcauto     
     309 
     310    HTTP请求方式:get                          
     311    是否需要登录:否                           
     312    请求参数: 
     313        pageNo: 
     314        pageSize: 
     315    返回参数: 
     316{ 
     317    "total":2000,                                      //总数 
     318    "pageNo":1,                                       //页码 
     319    "pageSize":20,                                   //每页有多少调 
     320    "focus":[ 
     321        { 
     322            "img":"http://xxxx.png",           //焦点图 
     323            "id":"123456"                            //帖子id 
     324        } 
     325    ], 
     326    "topicList":[ 
     327        { 
     328            "title":"todo",                              //帖子标题 
     329            "replyCount":100,                      //帖子的回复数 
     330            "readCount":100,                       //帖子的阅读数 
     331            "pubDate":"2012-02-02",          //帖子的发布时间 
     332            "author":"todo",                          //帖子的作者 
     333            "id":"123456",                            //帖子id 
     334            "img":"http://xxxx.png"             //帖子的导读图 
     335        } 
     336    ] 
     337} 
     338 
     339 
     340}}}