Struts2中对于动作类的以下行的等价物是什么:
if(actionError.get("myError").hasNext()){
....
}
答案 0 :(得分:1)
ActionSupport
类getActionErrors()
中有一个方法可以与代码一起使用
getActionErrors Collection<String> getActionErrors() Get the `Collection` of Action-level error messages for this action.
不应在此处直接添加错误消息,作为实现 可以自由地返回新的
Collection
或Unmodifiable Collection。Returns: Collection of String error messages
和
if (getActionErrors().contains("myError")) {
//your code here
}