在对 struts 2 jQuery 网格的值进行一些服务器端验证后,我想在网格顶部显示操作错误。任何帮助,将不胜感激。
这是我的操作错误。
addActionError("You can not delete this data");
但不幸的是,我无法在我的 jsp 页面中显示错误。请分享您对这个问题的了解。
在对 struts 2 jQuery 网格的值进行一些服务器端验证后,我想在网格顶部显示操作错误。任何帮助,将不胜感激。
这是我的操作错误。
addActionError("You can not delete this data");
但不幸的是,我无法在我的 jsp 页面中显示错误。请分享您对这个问题的了解。
试试这个
基本概念:你必须做一个jsp。
说 error.jsp 并在错误返回时,只需加载 error.jsp。
在 error.jsp 中写入 addActionError("You can not delete this data");
.
并将此 error.jsp 包含到您希望显示错误消息的主网格页面中
对于服务器端验证,我在 aftersubmit 事件上使用 json 响应,如下所示
navGrid("#pager2",{}, //options
{height:280,width:700,reloadAfterSubmit:false}, // edit options
{height:280,width:700,reloadAfterSubmit:false,
afterSubmit : function(response, postdata) {
var msg = "noError";
var res = $.parseJSON(response.responseText);
if (res && res.userMessage) {
alert(res.userMessage);
msg = res.userMessage;
}
//alert(msg);
if(msg == "noError") {
return [true, "Validation pass"];
} else {
return [false, msg];
}
}}, // add options
{reloadAfterSubmit:false}, // del options
{} // search options
);
和struts条目
<action name="jsontableEditValidationApartmentResource" class="com.loa.monitor.action.JsonActionResource" method="editValidate" >
<result name="success" type = "json"></result>
<result name="error" type="redirectAction">
<param name="actionName">proceedApartment</param>
</result>
</action>
和行动方法
public String editValidate() {
userMessage = "test msg1";
return "success";
}
private String userMessage ;
public String getUserMessage() {
return userMessage;
}
public void setUserMessage(String userMessage) {
this.userMessage = userMessage;
}
让我知道这是否有用