我正在尝试在 Firebase 中创建一个嵌套数据结构,如下所示:
{
things: {
<thingId>: {
name: 'My thing'
sub_things: {
<sub_thing_id>: {
name: 'Sub thing'
}
}
}
}
}
所以我这样做了:
thingsRef = new Firebase('http://my.firebaseio.com/things');
thingsRef.push({name: 'My thing'});
thingsRef.child('sub_things').push({name: 'Sub thing'});
但sub_things
永远不会同步到服务器。想法?我想立即获得本地副本。