gpt4 book ai didi

html - UserComments 架构上的 dtstart 警告

转载 作者:太空狗 更新时间:2023-10-29 13:25:12 24 4
gpt4 key购买 nike

我有以下代码用于评论的丰富摘要:

<ul itemscope itemtype="http://schema.org/UserComments">
<li id="comment-1" class="comment">
<span itemprop="name" class="author">Author 1</span>
<p itemprop="commentText">Bla Bla Bla</p>
<time itemprop="commentTime" content="2012-07-29" datetime="2012-07-29T05:55+00:00" title="Jul 29, 2012 5:55">2 days ago</time>
</li>

<li id="comment-2" class="comment">
<span itemprop="name" class="author">Author 2</span>
<p itemprop="commentText">yada yada yada</p>
<time itemprop="commentTime" content="2012-07-30" datetime="2012-07-30T04:44+00:00" title="Jul 30, 2012 4:44">yesterday</time>
</li>
</ul>

根据 schema.org/UserComments , 这是对的。然而,Google's Rich Snippets Testing Tool发出警告:

Warning: Missing required field "dtstart".

dtstart 甚至不是 UserComments 事件的属性。我应该忽略这个警告吗(谷歌的工具是测试版)?还是我遗漏了什么?

最佳答案

我想我找到了答案。正确的 HTML 代码似乎是这样的:

<ul>
<li id="comment-1" itemtype="http://schema.org/Comment" itemscope="itemscope" itemprop="comment">
<span itemprop="author">Author 1</span>
<p itemprop="text">Bla Bla Bla</p>
<time itemprop="dateCreated" content="2012-07-29" datetime="2012-07-29T05:55+00:00" title="Jul 29, 2012 5:55">2 days ago</time>
</li>
</ul>

每个评论都有自己的项目范围。这意味着您必须对每个评论重复 itemtype="http://schema.org/Comment"itemscope="itemscope"itemprop="comment"

我是查了Google's example for "Products with many offers"才得出这个结论的.他们使用包含关于产品的多条评论的 eBay 页面作为示例。 ReviewComment都是 CreativeWork 的一部分.

关于html - UserComments 架构上的 dtstart 警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11740569/

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