我试图弄清楚如何使用 OpenSearch 宣传我的 Web 应用程序的搜索端点(请参阅http://www.opensearch.org/Specifications/OpenSearch/1.1#OpenSearch_description_document),但即使是我最简单的示例也不起作用。我有index.html
:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head profile="http://a9.com/-/spec/opensearch/1.1/">
<link title="Search" rel="search" type="application/opensearchdescription+xml" href="osdd.xml"/>
</head>
<body>
hello
</body>
</html>
并osdd.xml
包含:
<?xml version="1.0" encoding="UTF-8"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" xmlns:moz="http://www.mozilla.org/2006/browser/search/">
<ShortName>test</ShortName>
<Description>test</Description>
<Url type="text/html" template="http://example.com?q={searchTerms}"/>
</OpenSearchDescription>
但似乎没有任何效果。Chrome 的“搜索标签”行为没有出现,并且使用开发者工具 Chrome 似乎根本没有加载osdd.xml
。
有什么线索吗?