jsp中页面间使用request传值:
页面1:<ahref="delGM.jsp?id=<%=s.getMidid()%>">删除</a>,还有一句:request.setAttribute("groupid...
页面1:<a href="delGM.jsp?id=<%=s.getMidid() %>">删除</a>,还有一句:request.setAttribute("groupid",id);转向页面2.页面2接受代码是: int id=Integer.parseInt(request.getParameter("id"));
int Gid=Integer.parseInt(request.getAttribute("groupid").toString());问题是:为么得不到Gid的值呢??在线等…… 展开
int Gid=Integer.parseInt(request.getAttribute("groupid").toString());问题是:为么得不到Gid的值呢??在线等…… 展开
2个回答
展开全部
getAttribute()方法传递的数据只会存在于Web容器内部,在具有转发关系的Web组件之间共享。
我的意思是,在纯粹的jsp页面跳转(没有经过servlet),则setAttribute()、getAttribute()方法不会起作用,因此Gid也就获取不到值,建议页面传递参数用get或者post形式。
换句话说,setAttribute()、getAttribute()只会在servlet或者action类或者继承了httpserlvet类里才会起作用,毕竟设置的是对象,而不是页面的参数。
我的意思是,在纯粹的jsp页面跳转(没有经过servlet),则setAttribute()、getAttribute()方法不会起作用,因此Gid也就获取不到值,建议页面传递参数用get或者post形式。
换句话说,setAttribute()、getAttribute()只会在servlet或者action类或者继承了httpserlvet类里才会起作用,毕竟设置的是对象,而不是页面的参数。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询