search-api.js 264 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 // 由于目前没有相关java接口,暂时调search 'use strict'; const api = global.yoho.SearchAPI; const getSortAsync = (condition) => { return api.get('sortgroup.json', condition, { code: 200 }); }; module.exports = { getSortAsync };