如何測試上下文中是否存在特定的動作消息?Struts2 - 發送特定信息反饋消息
<logic:messagesPresent message="error" property="my_error">
<table>
<tr>
<td>
<html:messages id="error" property="my_error">
<bean:write name="error"/><br>
</html:messages>
</td>
</tr>
</table>
</logic:messagesPresent>
我試過了,但我只需要搜索my_error消息。
<s:if test="hasActionMessages()">
<table>
<tr>
<td >
<s:actionmessage/>
</td>
</tr>
</table>
</s:if>
可能的複製[Struts2的等效 - )actionError.get(.hasNext()](http://stackoverflow.com/questions/42905050/struts2-equivalent-actionerror-get-hasnext) –