gpt4 book ai didi

java - Struts2 等效项 - actionError.get().hasNext()

转载 作者:行者123 更新时间:2023-12-02 13:37:35 24 4
gpt4 key购买 nike

Struts2 中操作类中的以下行等效于什么:

if(actionError.get("myError").hasNext()){
....
}

最佳答案

ActionSupport 类中有一个方法 getActionErrors()您可以与代码一起使用

getActionErrors

Collection<String> getActionErrors()

Get the `Collection` of Action-level error messages for this action.

Error messages should not be added directly here, as implementations are free to return a new Collection or an Unmodifiable Collection.

Returns:
Collection of String error messages

if (getActionErrors().contains("myError")) {
//your code here
}

关于java - Struts2 等效项 - actionError.get().hasNext(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42905050/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com