码迷,mamicode.com
首页 > Web开发 > 详细

Struts的JSP页面标签<html:errors/>的使用方法

时间:2017-03-27 23:07:10      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:ror   return   ref   style   string   提示信息   div   his   htm   

一个jsp里两个或多个<html:errors/>时如何让他们分别显示自己该显示的错误信息

关键字: <html:errors/> 一个jsp里两个或多个<html:errors/> 分别显示错误信息

我在一个jsp里用到了两次<html:errors/>,分别在两个form表单里,可是写了两个之后<html:errors/>,
点任何一个表单中的提交按钮这两个<html:errors/>都会一起显示错误信息,
要想让他们分别显示自己该显示的错误信息的话,看下边解决办法
======================<html:errors>====================== Action 中 :   
Java代码 技术分享
  1. ActionMessages message = new ActionMessages();   
  2.    message.add(" 消息句柄 ",new ActionMessage(" 资源文件中 Key 值 ",String 类型描述信息 ));   
  3.    this.saveErrors(request,message);   
  4.    return ActionForward;  
ActionMessages message = new ActionMessages(); 
message.add(" 消息句柄 ",new ActionMessage(" 资源文件中 Key 值 ",String 类型描述信息 ));
this.saveErrors(request,message);
return ActionForward;
JSP 页面中 :  
Html代码 技术分享
  1. <html:errors property=" 消息句柄 "/>   
 <html:errors property=" 消息句柄 "/>
如果Action中这样设定(false),页面的提示信息将不从资源文件里读取:   
Java代码 技术分享
  1. ActionMessages message = new ActionMessages();   
  2.    message.add("消息句柄",new ActionMessage("String类型描述信息));",false));   
  3.    this.saveErrors(request,message);   
  4.    return ActionForward;  
ActionMessages message = new ActionMessages(); 
message.add("消息句柄",new ActionMessage("String类型描述信息));",false));
this.saveErrors(request,message); return ActionForward;
JSP页面:   
Html代码 技术分享
  1. <html:errors/><html:errors property="消息句柄"/>  

 

Struts的JSP页面标签<html:errors/>的使用方法

标签:ror   return   ref   style   string   提示信息   div   his   htm   

原文地址:http://www.cnblogs.com/xiongduang/p/6629286.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!