gpt4 book ai didi

javascript - 如何使用 DuckDuckGo 的搜索自动完成建议

转载 作者:行者123 更新时间:2023-12-05 06:11:19 30 4
gpt4 key购买 nike

我正在将我的个人搜索建议从 google 转移到 duckduckgo,但我缺少一些简单的方法来让它发挥作用。我正在使用 jQuery-UI's autocomplete framework .

我的搜索表单

<form action="https://duckduckgo.com/?q=" method="post" id="search">
<input type="text" name="query" value="" autocomplete="off">
<button type="submit">Search</button>
</form>

我的 jQuery

$( "#search input[type=text]" ).autocomplete(
{
delay: 0,
minLength: 1,
position: { my: "left top-3" },
source: function( request, response )
{
// var suggestURL = "https://www.google.com/complete/search?client=firefox&q=%QUERY";
var suggestURL = "https://duckduckgo.com/ac/?q=%QUERY&type=list";

suggestURL = suggestURL.replace( "%QUERY", request.term );

$.ajax({
method: "GET",
dataType: "jsonp",
jsonpCallback: "jsonCallback",
url: suggestURL,
success: function( data )
{
response( data[1] );
},
error: function( jqXHR, textStatus, errorThrown )
{
console.log( textStatus, errorThrown );
}
}
});

google 返回的查询:

https://suggestqueries.google.com/complete/search?client=firefox&q=foobar&callback=jsonCallback&_=1600956954436

jsonCallback && jsonCallback(["foobar",["foobar","foobar meaning","foobar google","foobar challenge","foobar2000 skins","foobar2k","foobar2000 themes","foobar2000 download","foobar2000 mac","foobar themes"],[],{"google:suggestsubtypes":[[433],[],[],[],[],[],[],[],[],[]]}])

duckduckgo 的查询返回:

https://ac.duckduckgo.com/ac/?q=foobar&type=list&callback=jsonCallback&_=1600956892202

["foobar",["foobar2000","foobar","foobar2000 download","foobar ape","foobar2000 layout","foobar2000 decoder","foobar2000 tak","foobar2000 dsp"]]

两者之间的区别似乎是 jsonCallback && jsonCallback([data]) 包含在 google 查询中,我不明白为什么它们不同或如何修复它。

编辑 1

在向 js 添加一些错误处理后,我得到的错误是:

parsererror Error: jsonCallback was not called

编辑 2

在深入研究之后,我认为 DDG 的服务器不允许这样做。据我了解,他们的服务器需要发送适当的响应,但我认为他们没有这样做。

最佳答案

请参阅:https://duckduckgo.com/api

To consume it yourself, you can use one of the language libraries listed below or simply add '&format=json' (or xml if you prefer) onto any query URL in the api subdomain, e.g.

https://api.duckduckgo.com/?q=DuckDuckGo&format=json

Here are the requirements for use:

  • 在您使用我们的 API 的每个地方为我们和任何潜在来源注明出处。对于来源,您可以链接到来源的相关详细信息页面。对于我们,您可以使用我们的 Logo 说出来自 DuckDuckGo 的结果(并链接到特定结果页面)。
  • 非商业用途,除非您获得我们的电子邮件批准(尽管我们通常可以接受任何不粗略的内容)。
  • 使用描述性 t 参数,即在您的请求中附加 &t=nameofapp。

Our overall goal is to get more people using DuckDuckGo, so please keep that in mind as well.

q: query

format: output format (json or xml)

If format=='json', you can also pass:
callback: function to callback (JSONP format)

这对 JSONP 有效:https://jsfiddle.net/Twisty/rqdtv9sn/86/

这里的问题是这些不是建议和那些的 URL,https://ac.duckduckgo.com/ac/不想与 CORS 相处融洽。您可以使用 FETCH API 绕过它,但即使请求失败或无法解析,这也只会继续 Promise。

因此,在 DDG 提供建议 API 之前,您多半是运气不佳。

此处讨论了一些潜在的其他选项:https://www.sitepoint.com/jsonp-examples/

var script = $("<script />", {
src: "https://ac.duckduckgo.com/ac/?q=" + req.term,
type: "application/json"
}
);

Although that works, it doesn’t help us much, as we have no way of getting at the data it contains.

示例:https://jsfiddle.net/Twisty/rqdtv9sn/89/

浏览器显示响应,但随后您收到解析错误。

关于javascript - 如何使用 DuckDuckGo 的搜索自动完成建议,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64048533/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com