所以我的数据库中有json对象:
{
"title": "Blah blah"
"children": [
{...}, {...}
]
}
我的android对象看起来像这样:
public class MyObject {
public String title;
public ArrayList<ChildObject> children;
}
我想做的就是:
MyObject object = dataSnapshot.getValue(MyObject.class);
如果title填充了正确的值,则childs列表将始终为空。谁知道如何解决这个问题?