1

是否有任何好的客户端 JS 库可以访问 Google 的搜索 API?

4

2 回答 2

2

我找到了一个很好的例子,如何在客户端使用谷歌自定义搜索 API 。从文档:

<html>
  <head>
    <title>JSON/Atom Custom Search API Example</title>
  </head>
  <body>
    <div id="content"></div>
    <script>
      function hndlr(response) {
      for (var i = 0; i < response.items.length; i++) {
        var item = response.items[i];
        // in production code, item.htmlTitle should have the HTML entities escaped.
        document.getElementById("content").innerHTML += "<br>" + item.htmlTitle;
      }
    }
    </script>
    <script src="https://www.googleapis.com/customsearch/v1?key=YOUR-KEY&cx=017576662512468239146:omuauf_lfve&q=cars&callback=hndlr">
    </script>
  </body>
</html>

您必须将您的 API 密钥定义为

你的钥匙

和您的查询词,如

q=汽车

脚本 src 属性中的参数,结果将通过定义的 javascript 函数“hndlr()”加载到“内容”div 中,该函数是来自 Google API 的回调函数。

于 2012-06-30T12:31:14.057 回答
0

尝试谷歌搜索 API https://developers.google.com/web-search/

于 2012-06-30T12:29:05.427 回答