如何在java脚本中访问类的列表?
Class A {
int a;
int b;
}
Class B{
List<A> listA = SomeListOfAType;
}
myjs.js
i want to access this list. i can have this like
var list= "#{dataCaptureBean.listA}"; //provided getter of list
但是当我列出[i]时它会逐字逐句地返回而不是逐个对象,如何解决这个问题?
答案 0 :(得分:0)
我猜你用春天。
public @ResponseBody B method(..){
B b = new B();
..
return b;
}
success: funciton(response){
if(response){
var list = response.listA;
for(var i = 0; < list.length; ++i){
console.log(list[i].a + list[i].b);
}
}
}