1
我在創建一個帶有HTML代碼的Struts2驗證消息。Struts 2 Validation message with HTML code inside
例如:
<field-validator type="regex">
<param name="expression">
<![CDATA[^([0-9]+|[0-9]{1,3}(,[0-9]{3})*)(\.[0-9]{1,2})?$]]>
</param>
<message>
<b>${Price}</b> field for <b>${fundDescription}</b> and
<b>${currencyDescription}</b> must be a number and in the correct format
</message>
</field-validator>
我知道<b>${Price}</b>
和<b>${Price}</b>
不起作用。有沒有辦法做到這一點?
我不包括我的整個代碼,因爲它是不相關的。
謝謝。它按我的需要工作..現在我必須決定是否使用安全問題。 – Adriano