我传递了一个参数“parent”,如下所示。
<h:commandLink rendered="some contidion" >
<td>
<a href="home.xhtml">
<img src="icon.png" width="140" height="140" alt="alternate" />
</a>
</td>
<f:param name="parent" value="ABC" />
</h:commandLink>
但在 home.xhtml 上,我无法将其解读为:
#{param.parent}
我在做什么错误。