我尝试从包含html标记的资源包中放入一条消息:
application.portal.action.help=test <a href\="https://google.ro" target\="_blank">the opt in conditions</a>
在jsf outputLabel中:
<h:outputLabel id="test" value="#{myupmessages['application.portal.action.help']}"></h:outputLabel>
好吧...文本被呈现为呈现链接的纯文本iso。
您有任何想法吗?为什么?
谢谢。
最佳答案
找到解决方案:
我确实需要添加:
escape="false"
到outputLabel控件:)
关于java - 在资源包中使用html标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3584621/