我正面临着要显示这样一个链接的情况:
有关更多信息,请查看我们的常见问题解答。
链接后立即显示句号的位置。似乎为这定义了多个属性似乎是一种过度杀伤力
例如。
faq.info=For more information check out our
faq.markup=FAQ
faq.href=http://www.some.very.nice.url.com
faq.fullstop=.
我也不想只在html中包含点。是否可以在最后插入点或中间的链接?

最佳答案

您可以embed components inside string messages

<wicket:message key="faq.info">
  <a wicket:id="faq">
    <wicket:message key="faq.info.label"/>
  </a>
</wicket:message>


faq.info=For more information check out our ${faq}.
faq.info.label=FAQ


为此,您必须在Java代码中添加ID为“ faq”的链接。

10-07 20:34