丰富的代码片段标签 itemscope 和 itemtype 具有固定的顺序,如何在 JSP 中生成它?

发布于 2024-12-24 21:28:40 字数 295 浏览 1 评论 0原文

尝试将丰富的代码片段添加到 JSP 生成的页面。花了几个小时,但没有成功,然后意识到生成的页面如下所示:

 <p itemtype="http://schema.org/LocalBusiness" itemscope="itemscope">

Google 丰富摘要测试工具无法识别此页面。如果我将 itemscope 标签移到 itemtype 之前,它就会起作用。

对此我能做什么?解析器读取我的 JSPX 并以任意顺序将其与标签一起吐出。我可以以某种方式控制标签顺序吗?

Trying to add rich snippets to a JSP-generated page. Spent a few hours on it with no luck and then realized that the generated page looks like this:

 <p itemtype="http://schema.org/LocalBusiness" itemscope="itemscope">

This is not recognized by the Google rich snippet test tool. If I move the itemscope tag before itemtype, it works.

What can I do about this? The parser reads my JSPX and spits it out with the tags in arbitrary order. Can I have control over the tag order somehow?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

带上头具痛哭 2024-12-31 21:28:40

这不是最好的解决方案,但如果 Google 不遵循标准,我有什么资格争论......

在 JSPX 文件中,我生成如下 HTML:

<p itemscope="itemscope" itemtype="http://schema.org/LocalBusiness">
...
</p>

Not the nicest solution but if Google won't follow standards, who am I to argue...

In the JSPX file, I generate the HTML like this:

<p itemscope="itemscope" itemtype="http://schema.org/LocalBusiness">
...
</p>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文