java后台把一个对象 放入map中 传到jsp页面 页面中怎么把这个对象取出来
代码:HashMap<String,Object>map=newHashMap();map.put("user",user);map.put("foods",foods)...
代码:HashMap<String,Object> map = new HashMap();
map.put("user",user);
map.put("foods",foods);
页面:User user=((User)((Map<String,Object>)request.getParameter("map")).get("user")).get("user");
页面代码报错 展开
map.put("user",user);
map.put("foods",foods);
页面:User user=((User)((Map<String,Object>)request.getParameter("map")).get("user")).get("user");
页面代码报错 展开
5个回答
展开全部
把最后的一个get(“user”)去掉就行了。
最后你还是分步来吧,这样写以后不好维护。
1.获取你方法的map
HashMap<String,Object> map = (HashMap<String,Object>)request.getParameter("map"));
2.遍历map中的数据
User user = (User)map .get("user");
Food food = (Food)map.get("foods");
就可以了。
最后你还是分步来吧,这样写以后不好维护。
1.获取你方法的map
HashMap<String,Object> map = (HashMap<String,Object>)request.getParameter("map"));
2.遍历map中的数据
User user = (User)map .get("user");
Food food = (Food)map.get("foods");
就可以了。
更多追问追答
追问
这样不行 报错 cannot cash from string to hashmap
追答
你在后面的代码把你的map放进去了吗?
request .setAttribute("map",map);
你不光把对象放到map中,你还要把map放到request中,这样你在jsp页面才能拿到map的。
展开全部
你得把map用 request.setAttribute()放到request中
然后jsp里用 request.getAttribute()取出来
Parameter指的是客户端用get或者post方式提交到服务器的参数
服务器端要给客户端传递新的信息只能用attribute
然后jsp里用 request.getAttribute()取出来
Parameter指的是客户端用get或者post方式提交到服务器的参数
服务器端要给客户端传递新的信息只能用attribute
追问
我用spring左的 不用这样吧
页面上 我已经把user 里面的username用el表达式取到了
现在我想 在这里面)request.getParameter("map")).get("user")).get("user");
%>
把username 取出来 放session里面
追答
去掉一个get("user")试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
首先看你页面能收到map吗 不能的话还得在你后台传出来,收到的话你就直接就可以get("user")取user了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你后台用存了没。
request .setAttribute("map",map);
页面
request .getAttribute("map"); 然后就可以装换成Map了
request .setAttribute("map",map);
页面
request .getAttribute("map"); 然后就可以装换成Map了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
ModelAndView 把此方法如何调用的贴出来看看
更多追问追答
追问
这个问题 解决了 我用setAttribute就好了 。。。。。。用了ModelAndView还要setAttribute吗? 很费解
追答
不会是你的foods又没那样设置吧
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询