struts2中怎么判断id
打开一个部门,比如说id=4,然后里面是个list,为此部门人员数据。下面有个添加,点击弹出不属于此部门的人员,我是用iframe,<iframesrc="showuse...
打开一个部门,比如说id=4,然后里面是个list,为此部门人员数据。下面有个添加,点击弹出不属于此部门的人员,我是用iframe,<iframe src="showusers1.action?id=" width="760" height="100%"></iframe> id判断不会搞,即点击后怎么才能显示不属于此部门的人员。
struts2的,显示当前部门人员的action代码如下:
public String showusers() throws Exception {
String sid = ServletActionContext.getRequest().getParameter("id");
if(null != sid && null != rservice.findById(Integer.parseInt(sid))){
role=rservice.findById(id);
if(role.getActorType()==1)
users=dservice.findById(role.getDepId()).getUsers();
else
users=role.getUsers();
}
String page =ServletActionContext.getRequest().getParameter("jumpPage");
String row = ServletActionContext.getRequest().getParameter("pageSize");
String purl="showusers.action";
String conds="id="+id;
if(page==null)
page="1";
if(row==null)
row="10";
int count=users.size();
List cond=tarry.seriallist(Integer.parseInt(page),Integer.parseInt(row), users);
pages=rservice.getPagesOfConds(page,row, purl, count, cond,conds);
return SUCCESS;
} 展开
struts2的,显示当前部门人员的action代码如下:
public String showusers() throws Exception {
String sid = ServletActionContext.getRequest().getParameter("id");
if(null != sid && null != rservice.findById(Integer.parseInt(sid))){
role=rservice.findById(id);
if(role.getActorType()==1)
users=dservice.findById(role.getDepId()).getUsers();
else
users=role.getUsers();
}
String page =ServletActionContext.getRequest().getParameter("jumpPage");
String row = ServletActionContext.getRequest().getParameter("pageSize");
String purl="showusers.action";
String conds="id="+id;
if(page==null)
page="1";
if(row==null)
row="10";
int count=users.size();
List cond=tarry.seriallist(Integer.parseInt(page),Integer.parseInt(row), users);
pages=rservice.getPagesOfConds(page,row, purl, count, cond,conds);
return SUCCESS;
} 展开
展开全部
你可以传当前部门的id,在后台写查询语句查处不属于该部门的人就行了,另外你的action方法不要直接抛出异常,必须做异常处理
更多追问追答
追问
问题就是iframe的链接处里我不知道怎么得到当前部门的id
追答
晕 你不会用js得到当前部门的id?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询