js和jsp中怎么去获取后台 model.addAttribute()存入的list对象

java 后台
List productionGroupList =getProductionGroupList(); model.addAttribute("productionGroupLists",new Gson().toJson(productionGroupList));


js代码

var productionGroupListJson = '${productionGroupLists}'; if(productionGroupListJson != ''){ productionGroupListJson = JSON.parse(productionGroupListJson); console.log(productionGroupListJson); for(var p in productionGroupListJson){ if (upperId1==productionGroupListJson[p].pg_id){ $("#appdiv").show(); }else{ $("#appdiv").hide(); } } }  
相应的 在jsp中,使用的也是${....} 这样的方式获取

 

转载于:https://www.cnblogs.com/isme-zjh/p/11507449.html

你可能感兴趣的:(js和jsp中怎么去获取后台 model.addAttribute()存入的list对象)