作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我将其作为 template.xhtml:
<div class="span4">
<ui:insert name="column1">
<h2>#{heading}</h2>
<p>#{paragraph}</p>
</ui:insert>
</div>
我想做的是这样的:
<ui:composition template="template.xhtml">
<ui:define name="column1">
<ui:param name="heading" value="My Heading" />
<ui:param name="paragraph" value="My Paragraph" />
</ui:define>
</ui:composition>
但是,它不起作用。我既没有看到标题也没有看到段落。
我做错了什么?
最佳答案
你的参数定义在错误的地方:
<ui:composition template="template.xhtml">
<ui:param name="heading" value="My Heading" />
<ui:param name="paragraph" value="My Paragraph" />
<ui:define name="column1">
</ui:define>
</ui:composition>
<ui:define />
中的所有内容渲染时被替换。
关于jsf - 如何将参数传递给 JSF 2 中的模板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16802142/
我是一名优秀的程序员,十分优秀!