bootstrap table 实现父子表

 

在进行项目时,用到了bootstrap table的父子表,现在记录下使用过程中遇到的坑。






BootStrap Table使用
    
    

    
    
	
    
   
    
    
    
    
    
	
	


	    
查询条件

在进行url后台取值的时候,记住返回值必须得是:json数组!json数组!json数组!(重要的事情说三遍!)

后台部分代码:

	@RequestMapping("getZphInfo")
	@ResponseBody
	public List getZphInfo(Model model) { 
				
		List zphinfolist = new ArrayList();
		zphinfolist = zphservice.getZphInfoList();
		model.addAttribute("zphinfolist", zphinfolist);
		for (ZphInfo zphInfo : zphinfolist) {
			logger.info(zphInfo.toString());
		}
		
		return zphinfolist;
		
	} 
	
	@RequestMapping("getZphInfobyid")
	@ResponseBody
	public List getZphInfoById(int id) { 
		
		//int zphid = Integer.parseInt(id);
		ZphInfo zphinfo = new ZphInfo();
		if(null == zphservice.getZphInfoById(id)) {			
			logger.info("未查找到信息!");
			return null;
		}
		List zpList = new ArrayList();
		zphinfo = zphservice.getZphInfoById(id);
		zpList.add(zphinfo);
		return zpList; 
		
	}

效果图:bootstrap table 实现父子表_第1张图片

你可能感兴趣的:(bootstrap)