我有其中有对象的形式。该对象有一个对象列表(在表单视图上有变量),所以是这样的:
FormClass{
Obj1 oj1; //getter-setter method included
}
class Obj1{
List<Obj2> obj2; //getter-setter for this included
}
class Obj2{
String title;
String name;
//getter-setter included for all fields
}
现在我想将文本框(在表单上)值分配给 Obj2 中的字段(比如标题)。
我尝试使用 obj1.obj2[0].title 但这不起作用。
能否请您发表评论。