RT,比如一个简单的登陆demo
<html:form action="/login">
<div>
${msg}
</div>
username : <html:text property="username"/><html:errors property="username"/><br/>
password : <html:password property="password"/><html:errors property="password"/><br/>
<html:submit/><html:cancel/>
</html:form>
(用的struts1的<html>标签)
提交到action中处理 action中有一句代码request.setAttribute("msg", "用户名或者密码不正确");
这个是登陆失败后,然后跳转到原jsp页面,但是这样msg的内容不会显示,然后奇怪的是我变为
request.getSession().setAttribute("msg", "用户名或者密码不正确");后能显示了!
更纳闷了,按理说应该范围是一次请求吧?应该request就能得到了啊,为什么要保存在session中才能得到?
你好,这个例子很好,我刚才试验了下,发现3个request值是一样的?但是不能理解的是test仍然=null?
现在大致明白意思了,就是说这两个request不一样所以在一个中set另一个不能get到?但是不知道怎么会是这个结果能解释下吗?
request.setAttribute()后jsp页面取不到值
不能这么请求。因为页面上的request 和使用form提交的request 请求 不是一个对象。测试如下:首先在jsp页面中打印出来request对象 < request.setAttribute("test","test");System.out.println("request="+request+"返回页面对象");\/\/这里打印出页面request对象 > 部分action代码如下:HttpServletRequest req...
jsp request.getAttribute 取不到值
用session取。如果你用了RequestDispatcher rd = request.getRequestDispatcher("url");rd.forward(request, response); 那么你就可以存在requset里。
...request.setAttribute("name", name);在页面上取不到值
request.setAttribute("name", name);只能使用在即将调用jsp的时候起作用,也就是在调用的jsp中可以调用request.getAttribute("name");你说的action中应该变成了两次请求了。不是同一个request,当然不能获取到值。
struts2 为什么 jsp设置的request.setAttribute("fox","fox");取不...
很显然是可以的.. request只能是一次传递.不像session 或者是 application对象.action中获取不到 是因为你在struct2的action中获取的request对象并不是jsp传递过来的那个对象.这里和struts1不同, struts1 execute对象将httpRequest 作为参数给予你了.而你在struts2中需要自己去获取这个对象的. 你获取的并不...
JSP关于request.setAttribute的问题
1、使用form页面进行数据的保存,在下次提交时,将参数提交给服务器,这个时候,就不是用request.getAttribute了,而是使用request.getParameter (对于少量数据时,推荐该方法)2、使用session进行数据的存储,上面的request.setAttribute的位置都改为:request.getSession().setAttribute,而request.getAttribute的...
可以一下传送多个request.setAttribute();然后另一个JSP页面都可以取到...
如果你是跳转到那个页面的话就可以取,request.setAttribute();只能在相互跳转的页面之间传值,如果你想夸页面传值就用session
JSP问题,jsp获取不到后台中request.setAttribute()里的List.
req是域对象,不能传给jsp页面,请将list传给pageContext再试。pageContext.setAttribute("informList", informList);
request.getAttribute取不到值问题!感谢!
LZ你为何要这样写?你直接在一个方法里面完成更新就是了啊,何必写两个方法?你非要这样写的话就存在session里面吧,肯定能拿到 之所以取不到是因为表单提交不保留request里面的值
request.setAttribute 为什么不能在jsp间传递对象
request.setAttribute是请求转发 从后台到jsp页面其实他的URL还是在后台就是servlet 但是他显示的是jsp的内容 如果你再跳转到另一个jsp那么他的URL就发生改变 所以你传的东西就没了
关于request.setAttribute()的用法 急死我了
request.setAttribute是在请求域里面加了一个请求的参数,所以在sendRedirect以后是无法取到request.setAttribute的请求的。解决办法(两种):1、如果你是在同一个服务器(容器)里做的转向工作。那么可以这样 把 request.setAttribute("cha", cha);改成 request.getSession().setAttribute("cha", cha);然...