搜狗搜索.js 704 B

123456789101112131415161718192021222324252627
  1. js:
  2. let d=[];
  3. let html = request(input);
  4. // print(html);
  5. let jsonA = JSON.parse(html.match(/INITIAL_STATE.*?({.*});/)[1]);
  6. print(jsonA);
  7. jsonA = jsonA.result.longVideo.results;
  8. jsonA.forEach(function (it){
  9. let name=it.name;
  10. let introduction=it.introduction;
  11. let pic= it.v_picurl;
  12. let url= it.tiny_url;
  13. let zone=it.zone;
  14. let score=it.score||'暂无';
  15. let style=it.style;
  16. if(it.play.item_list){
  17. let r = {};
  18. r.title = name.replace(//,'').replace(//,'');
  19. r.url= 'https://v.sogou.com'+url;
  20. r.desc = it.list_category.join(',');
  21. r.content= introduction;
  22. r.pic_url= pic;
  23. d.push(r);
  24. }
  25. });
  26. // print(d);
  27. setResult(d);