Google Sitelinks搜索框JSON-LD脚本

时间:2015-08-19 11:12:58

标签: google-rich-snippets json-ld

要为您的网站设置Google附加链接搜索框,您必须在页面中包含此脚本:

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "WebSite",
  "url": "https://www.example.com/",
  "potentialAction": {
    "@type": "SearchAction",
    "target": "https://query.example.com/search?q={search_term_string}",
    "query-input": "required name=search_term_string"
  }
}
</script>

我的问题是: <script type="application/ld+json">可以在外部吗?对于自己的页面而言,它显然是无用的,并且爬虫可以根据需要提出额外的请求。

1 个答案:

答案 0 :(得分:0)

虽然它不是传统意义上的外部(使用src属性),it can be injected by JavaScript