我的网站目前使用以下代码向 chrome 添加了一个自定义 Omnibox 搜索引擎:
ombnibox.xml
<?xml version="1.0"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
<ShortName>Example </ShortName>
<Description>Example Search</Description>
<Url type="text/html" template="http://Example.com /search.aspx?searchVal= {searchTerms}"></Url>
</OpenSearchDescription>
我的网站母版页包括:
<link type="application/opensearchdescription+xml" title="Example" rel="search" href="/omnibox.xml" />
这很好用,用户可以毫无问题地进入我的搜索结果页面。我想将搜索建议集成到这个自定义搜索引擎中,但我什至不知道从哪里开始。我找到了一堆返回 JSON 的 PHP 示例,但我找不到 ASP.net 的示例或从数据库中检索结果建议的示例。
任何帮助都是极好的。