Apache Wicket中的Flash反馈消息格式化。

huangapple go评论76阅读模式
英文:

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

huangapple
  • 本文由 发表于 2023年7月24日 18:41:22
  • 转载请务必保留本文链接:https://go.coder-hub.com/76753677.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定