gpt4 book ai didi

schema.org - 启用 Google 附加链接搜索框

转载 作者:行者123 更新时间:2023-12-02 01:06:01 24 4
gpt4 key购买 nike

我想为网站启用 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

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

最佳答案

感谢@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>

关于schema.org - 启用 Google 附加链接搜索框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30815872/

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