英文:
Formatting of flash feedback messages in Apache Wicket
问题
是不是可以在Apache Wicket中格式化(国际化)的Flash反馈消息?具体来说,我需要将较长的错误消息分成多行,但找不到方法来实现...?(HTML标签无法使用,也没有其他方法来包含换行符)
编辑
public static void messageError(Page page, String messageText) {
page.error(messageText);
}
error方法只接受一个字符串而不是一个模型,所以setEscapeModelStrings(false)
在这里不起作用。
英文:
Is it possible to format (internationalized) flash feedback messages in Apache Wicket? Specifically, I need to break a longer error message to separate lines but can not find a way to do it...? (html tags do no work and any other way to include a new line either)
Edit
public static void messageError(Page page, String messageText) {
page.error(messageText);
}
The error method accepts only a string not a model, so setEscapeModelStrings(false)
does not work here.
答案1
得分: 2
你可以使用HTML标签来格式化你的消息(例如:<br>
),但是你需要在组件上调用setEscapeModelStrings(false)
以避免HTML转义。
英文:
you can use HTML tags to format your message (es: <br>
) but you need to invoke setEscapeModelStrings(false)
on the component in order to avoid html escaping
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论