4
在我的web應用程序,我想一些文字發回的struts2的發送HTML文本帶回actionerror或動作消息
addActionError("User not logged in. <a href=\"logon\">Click Here</a> to log in");
的問題是HTML文本顯示爲普通文本並沒有出現爲鏈接點擊。
在我的web應用程序,我想一些文字發回的struts2的發送HTML文本帶回actionerror或動作消息
addActionError("User not logged in. <a href=\"logon\">Click Here</a> to log in");
的問題是HTML文本顯示爲普通文本並沒有出現爲鏈接點擊。
在<s:actionerror>
標記上設置escape="false"
屬性;它默認爲true
:
<s:actionerror escape="false"/>
有關詳細信息,請參閱<s:actionerror>
docs。粗略地:
escape default=false required=false type=Boolean ==> Whether to escape HTML