wiki:app2.0/02_search

Version 2 (modified by pengzhanxuan, 11 years ago) (diff)

--

搜索

搜索接口

search/listTopicSearch.do

说明

分类搜索返回5个栏目筛选项 国内电商返回 优惠/发现;国外电商返回 海淘/发现 标签搜索返回5个栏目筛选项 关键词搜索返回关键词 + 5个栏目

参数

  • pageNo
  • pageSize
  • searchType 1 按分类搜索 2 按电商搜索 3 按标签搜索 4 按关键词搜索
  • searchCondition 根据searchType传入具体的内容,分类、电商、标签传入对应的id,关键词直接传入搜索的关键词字符串
  • section 搜索栏目,不同类型的搜索出不同的默认值

返回

result {
        status: 1
        pageNo: 1
        pageSize: 20,
        total: 100,
        pageTotal: 5,
        msg: '请求成功',
        data: {
            topics: $topic,
            sections: [$section],
                searchSectionResults: [sectionExtend]
        }
}

搜索热词

personal/search/listHotSearchTerms.do

说明

该推荐词又编辑在聚超值后台设置

参数

返回

result {
    status: 1
        msg: '请求成功',
        data: [
                {
                        encodeKey: "%E8%85%95%E8%A1%A8",
                        key: "腕表"
                },
                {
                        encodeKey: "%E6%88%B7%E5%A4%96",
                        key: "户外"
                },
                {
                        encodeKey: "%E4%B9%90%E9%AB%98",
                        key: "乐高"
                },
                {
                        encodeKey: "%E6%B4%97%E6%8A%A4%E7%94%A8%E5%93%81",
                        key: "洗护用品"
                },
                {
                        encodeKey: "%E8%B6%85%E6%9E%81%E6%9C%AC",
                        key: "超极本"
                },
                {
                        encodeKey: "%E6%89%8B%E6%9C%BA",
                        key: "手机"
                }
        ]
}

搜索推荐

personal/search/searchKeywordHint.do

说明

根据搜索输入推荐的热门搜索词

参数

返回

result {
    status: 1
        msg: '请求成功',
        data: [
        {
                count: "556",
                key: "iphone 5s"
        },
        {
                count: "258",
                key: "ipad air"
        }
        ]
}