list集合存list 以及s标签在foreach循环遍历中用EL表达式取值

特点总结:
在一个iterator集合容器中遍历另外一个list中的list的,通过iterator中的 status="status"状态为,同时	?fileid=${bean.fileid}">${bean.filename}
解决了s标签中无法用EL表达式取值的难题。

controller中的代码:
List> fileformlilist=new ArrayList>();
		for(int i=0;i filelist=fileformService.ByOtherId(projectlist.get(i).getProjectid());
			fileformlilist.add(i, filelist);
		}
		ActionContext.getContext().put("fileformlilist", fileformlilist);

jsp中的代码:

				
					
						${status.index + 1} 
						${projectname} 
						${employeename} 
						
						
								?fileid=${bean.fileid}">${bean.filename}
								
						
						查看 
						修改 
						删除
						
					
				
			


你可能感兴趣的:(java)