开发者

Nested JSTL Tags

I want to use a formatDate tag inside a param tag.开发者_运维问答 This doesn't work:

<fmt:message key="entry">
   <fmt:param value="<fmt:formatDate value='${entry.time}' pattern='h:mm' />"/>
</fmt:message>

How can I do this?


You can use the body content of fmt:param

Like this:

<fmt:message key="entry">
  <fmt:param><fmt:formatDate value='${entry.time}' pattern='h:mm' /></fmt:param>
</fmt:message>

This should do what you want. :)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜