Changes between Version 66 and Version 67 of baby/interface


Ignore:
Timestamp:
07/17/2014 04:23:26 PM (12 years ago)
Author:
xuzhongzhou
Comment:

添加 4.9 论坛搜索接口

Legend:

Unmodified
Added
Removed
Modified
  • baby/interface

    v66 v67  
    675675    } 
    676676   ] 
     677  } 
     678}}} 
     679 
     680==== 4.9论坛搜索接口 ==== 
     681{{{ 
     682  http://bbs.pcbaby.com.cn/mobile/searchTopics.do 通过关键字或标题搜索帖子内容,结果从快搜得到 
     683 
     684  参数  
     685  searchWord=; 关键字 
     686  pageSize,pageNo,maxLength; 
     687  searchScope=1; 查找的范围,1为标题或内容,2为标题,3为内容 
     688  返回json格式  
     689  { 
     690    status, 
     691    total, 
     692    pageSize, 
     693    pageNo, 
     694    topics[ 
     695      { 
     696        topicId, 
     697        title, 
     698        message, 
     699        uid, 
     700        createAt, 
     701        view, 
     702        replyCount, 
     703        secretForum 
     704      } 
     705    ] 
    677706  } 
    678707}}}