我可以将 Microdata 与 JSF 2.0 一起使用吗?

发布于 2024-11-24 23:21:14 字数 244 浏览 0 评论 0原文

我找到了这个页面: http://www.kiwi-community.eu/pages/viewpage.action ?pageId=7733331

但这相当令人沮丧。

我是否只需添加名称空间并使用标签? 我似乎也很难找到正确的名称空间......

I found this page:
http://www.kiwi-community.eu/pages/viewpage.action?pageId=7733331

But it is rather discouraging.

Do I simply add the namespace and use the tags ?
I also seem to have a hard time finding the correct namespace...

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

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

发布评论

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

评论(2

怎言笑 2024-12-01 23:21:15

我不知道 jsf 是什么,但您可以在任何 html5 标记中使用微数据。查看 schema.org 以获取命名空间和链接。

idk what jsf is but you can use microdata in any html5 markup. check out schema.org for the namespace and linkage dude.

巾帼英雄 2024-12-01 23:21:14

当我将微数据添加到 web 应用程序中的 JSF 复合组件时,我发现只要 itemscope 不留空值,它就可以正常工作。请参阅:how-can-i-manage-microdata-with-xslt

所以像下面这样就可以了:

<section itemscope="itemscope" itemtype="http://schema.org/Person">
    <div class="profile">
        <h4 itemprop="name" ><h:outputText value="#{cc.attrs.name}"/></h4>
        <h5 itemprop="title"><h:outputText value="#{cc.attrs.jobTitle}"/></h5>
        <p itemprop="telephone" class="phone"><h:outputText value="#{cc.attrs.phoneNumber}"/></p>
    </div>
</section>

When adding microdata to a JSF composite component in a webapp I'm working on I found that it worked fine as long as itemscope was not left with an empty value. See: how-can-i-manage-microdata-with-xslt

So something like the following is fine:

<section itemscope="itemscope" itemtype="http://schema.org/Person">
    <div class="profile">
        <h4 itemprop="name" ><h:outputText value="#{cc.attrs.name}"/></h4>
        <h5 itemprop="title"><h:outputText value="#{cc.attrs.jobTitle}"/></h5>
        <p itemprop="telephone" class="phone"><h:outputText value="#{cc.attrs.phoneNumber}"/></p>
    </div>
</section>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文