2

我想为网站启用Google 附加链接搜索框。关键是它的自定义搜索页面是由哈希片段实现的,所以 JSON-LD 数据片段是这样的:

<script type="application/ld+json">
  {
  "@context": "http://schema.org",
  "@type": "WebSite",
  "name" : "my site",
  "alternateName" : "example.com",
  "url": "http://www.example.com/",
  "potentialAction": {
    "@type": "SearchAction",
    "target": "http://www.example.com/Search/#!/Keyword-{search_term_string}",
    "query-input": "required name=search_term_string"
  }
}
</script>

当 Google 尝试从这部分提取信息"required name=search_term_string"以显示附加链接搜索框时,遇到了一个问题:

:   http://schema.org/True
valueName:  missing and required

我怀疑谷歌可能只是期望查询字符串中的搜索字符串而不是哈希片段,除了重定向之外,你有什么建议?

4

1 回答 1

6

感谢@unor,我找到了解决方案,所以最终代码是这样的:

<script type="application/ld+json">
        {
          "@context": "http://schema.org",
          "@type": "WebSite",
          "name" : "example",
          "alternateName" : "example.com",
          "url": "http://www.example.com/",
          "potentialAction": {
            "@type": "SearchAction",
            "target": "http://www.example.com/Search/#!/Keyword-{search_term_string}/",
            "query-input": {
        		"@type": "PropertyValueSpecification",
        		"valueRequired": true,
        		"valueMaxlength": 100,
        		"valueName": "search_term_string"
    		}
          }
        }
</script>

于 2015-06-21T09:55:04.173 回答