问题描述
- 怎么样把action中同一个类中不同的方法数据,有区分的显示在JSP页面中
-
action中代码:
Article articleNext=articleService.getNext(article);
Article articlePrev=articleService.getPrev(article);getActionContext().put("nextArticle", articleNext); getActionContext().put("prevArticle", articlePrev); 这是获取当前文章前一篇和后一篇的方法,数据获取到了,如果我直接用${name }方法,没有区分,两个显示的是同一条数据,怎么样区分呢?在JSP页面中分别显示出来
解决方案
你这儿不是有两别名吗?"nextArticle"、"prevArticle"。
解决方案二:
先在adction里将数据用不同的键名存在session里面 或者request里面 然后在页面获取
时间: 2024-10-30 12:07:12