0. TLDR
这是使用 Google 的https://suggestqueries.google.com/complete/search的工作小提琴
参数:
output/client # "toolbar" => xml, "firefox" => json, "chrome" => jsonp
ds # which site to search in ("bo" for books, "yt" for youtube...)
q # search term: "sher"
询问:
https://suggestqueries.google.com/complete/search?output=firefox&ds=bo&q=sher
结果:
["sher",["sherlock holmes","sherrilyn kenyon","sherman alexie","sheryl sandberg","sherlock","sherlock holmes short stories","sherlock holmes book","sher o shayari","sherlock holmes novels","sher shah suri"]]
1. 建议与搜索结果
首先要意识到的是,当 Google 提出建议时,它们并不是你按 Enter 键时它会显示给你的结果。
如果您的查询中包含相关术语,则搜索结果是相关的。
建议假定您的查询不完整,因此将您的查询与其他查询进行比较,以猜测您的查询的完整版本可能是什么。
当我在http://books.google.com上搜索“sher”时,我看到的结果是:
- 1999-2001 年以巴和平谈判
- 超越中立:完美主义与政治
- 沙漠
- 拒绝选择!:使用你所有的兴趣,激情,......
原因是作者:在前三个的情况下,“George Sher”和第四个“Barbara Sher”的情况。这是理想的行为,因为当我搜索“sher”时,我不希望“Sherlock”结果掩埋“George Sher”。
2. 解决方案
谷歌也有一种用于其建议的 API。可以在此处找到有关它的一些信息。更重要的是,使用开发人员工具,您可以准确地看到 Google 正在做什么。
使用开发者工具:检查https://books.google.com页面( Chrome 中的CTRL+ SHIFT+ i)。转到网络选项卡并等待所有内容都加载完毕。
当您开始输入时,Google 会向您将看到填充在列表中的服务器发出请求。当我输入“sher”时,谷歌发送了这个请求:
https://suggestqueries.google.com/complete/search?client=books&ds=bo&q=sher&callback=_callbacks_._1id33zyi5
看变量:
client = books
ds = bo
q = sher
callback = _callbacks_._1id33zyi5
- 客户端确定您收到的结果类型(XML [工具栏]、JSON [firefox]、JSONP [chrome])
- ds将搜索限制在特定站点(书籍 [bo]、youtube [yt] 等)。
- q当然是查询文本
- callback是用于 JSONP 的参数(与 JSON 有一些重要区别)。不要太担心它,因为 jQuery 可以为您处理这个问题。
通过查看这个请求并阅读这个和这个,我将这些参数的一些信息拼凑在一起。
CORS:因为您从不是 google.com 的域发出请求,所以您会收到Access-Control-Allow-Origin
错误消息。这是一种试图防止XSS的安全措施。要解决这个问题,您需要使用 JSONP。
使用 jQuery,我们不必担心回调,所以让我们将客户端参数更改为chrome
并使用以下最终查询:
https://suggestqueries.google.com/complete/search?client=chrome&ds=bo&q=sher
下面的工作示例:在此示例中,您可能需要记下"google:suggestrelevance"
密钥,这是使用 JSONP 的额外好处(Google 仅在 JSONP 数据中返回该信息)。
var requestUrl = "https://suggestqueries.google.com/complete/search?client=chrome&ds=bo&q=";
var xhr;
$(document).on("input", "#query", function () {
typewatch(function () {
// Here's the bit that matters
var queryTerm = $("#query").val();
$("#indicator").show();
if (xhr != null) xhr.abort();
xhr = $.ajax({
url: requestUrl + queryTerm,
dataType: "jsonp",
success: function (response) {
$("#indicator").hide();
$("#response").html(syntaxHighlight(response));
}
});
}, 500);
});
/*
* --------- YOU ONLY NEED WHAT IS ABOVE THIS LINE ---------
*/
$(document).ready(function () {
$("#indicator").hide();
});
// Just for fun, some syntax highlighting...
// Credit: http://stackoverflow.com/a/7220510/123415
function syntaxHighlight(json) {
if (typeof json != 'string') {
json = JSON.stringify(json, undefined, 2);
}
json = json.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>');
return json.replace(/("(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g, function (match) {
var cls = 'number';
if (/^"/.test(match)) {
if (/:$/.test(match)) {
cls = 'key';
} else {
cls = 'string';
}
} else if (/true|false/.test(match)) {
cls = 'boolean';
} else if (/null/.test(match)) {
cls = 'null';
}
return '<span class="' + cls + '">' + match + '</span>';
});
}
// And automatic searching (when you stop typing)
// Credit: http://stackoverflow.com/a/2219966/123415
var typewatch = (function () {
var timer = 0;
return function (callback, ms) {
clearTimeout(timer);
timer = setTimeout(callback, ms);
};
})();
/*
* Safe to ignore:
* This is just to make stuff look vaguely decent
*/
body {
padding: 10px;
}
div * {
vertical-align: top;
}
#indicator {
display: inline-block;
background: no-repeat center/100% url('http://galafrica.actstudio.ro/img/busy_indicator.gif');
width: 17px;
height: 17px;
margin: 3px;
}
/*
*
* CREDIT:
* http://stackoverflow.com/a/7220510/123415
*/
pre {
outline: 1px solid #ccc;
padding: 5px;
}
.string {
color: green;
}
.number {
color: darkorange;
}
.boolean {
color: blue;
}
.null {
color: red;
}
.key {
color: #008;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div>
<input type=text id="query" placeholder="Start typing..." /><span id="indicator"></span>
</div>
<pre id="response"></pre>