访问对象的 uid Firebase
Accessing an object's uid Firebase
在 Firebase 中,我们可以像这样创建一个新对象:
Firebase *postRef = [ref childByAppendingPath: @"posts"];
NSDictionary *post1 = @{
@"author": @"gracehop",
@"title": @"Announcing COBOL, a New Programming Language"
};
Firebase *post1Ref = [postRef childByAutoId];
[post1Ref setValue: post1];
而这个新的 post 可能会保存在 URL 中,例如:http://app.firebaseIO.com/posts/$postuid
稍后当用户 UIViewController
查看 post 时,我们可能想要 post 发表评论。但是,为了 post 发表评论,我们需要访问 post 的 uid。似乎唯一可行的方法是将 uid 保存到我们的 post 对象?
基本上,将对象的 uid 存储在其中通常是最佳做法吗?
在这种情况下,答案是否定的,您不需要在节点内存储唯一标识符(密钥),因为它始终可以从 snapshot.key.
获得
key:value对的值取自snapshot.value。
可能有一些特殊情况,密钥可能需要存储在节点内部,但通常不需要。
从用户节点打印每个键和值的示例
users
uid_0
name: "Kirk"
uid_1
name: "Spock"
和代码
let ref = Firebase(url:"https://your-app.firebaseio.com/users")
ref.queryOrderedByChild("name").observeEventType(.ChildAdded, withBlock: { snapshot in
print("The key: \(snapshot.key)") //the key
print("The Value: \(snapshot.value)") //all the values for this key
let specificValue = snapshot.value["name"] as! NSString
print("Specific value: \(specificValue)") //a specific value
})
请注意,在这种情况下,每个用户节点都有一个 uid_x 作为键。这个唯一标识符是从 authData.uid 获得的。创建用户时。传统上,其他节点中的节点密钥将由 childByAutoId (或非 iOS 的 push() )
创建
关于你的问题;根据用途,将 firebase 快照数据存储在字典中,并将这些字典(或 类)作为 tableView 数据源存储在数组中通常很方便。数组保持顺序。
在 Firebase 中,我们可以像这样创建一个新对象:
Firebase *postRef = [ref childByAppendingPath: @"posts"];
NSDictionary *post1 = @{
@"author": @"gracehop",
@"title": @"Announcing COBOL, a New Programming Language"
};
Firebase *post1Ref = [postRef childByAutoId];
[post1Ref setValue: post1];
而这个新的 post 可能会保存在 URL 中,例如:http://app.firebaseIO.com/posts/$postuid
稍后当用户 UIViewController
查看 post 时,我们可能想要 post 发表评论。但是,为了 post 发表评论,我们需要访问 post 的 uid。似乎唯一可行的方法是将 uid 保存到我们的 post 对象?
基本上,将对象的 uid 存储在其中通常是最佳做法吗?
在这种情况下,答案是否定的,您不需要在节点内存储唯一标识符(密钥),因为它始终可以从 snapshot.key.
获得key:value对的值取自snapshot.value。
可能有一些特殊情况,密钥可能需要存储在节点内部,但通常不需要。
从用户节点打印每个键和值的示例
users
uid_0
name: "Kirk"
uid_1
name: "Spock"
和代码
let ref = Firebase(url:"https://your-app.firebaseio.com/users")
ref.queryOrderedByChild("name").observeEventType(.ChildAdded, withBlock: { snapshot in
print("The key: \(snapshot.key)") //the key
print("The Value: \(snapshot.value)") //all the values for this key
let specificValue = snapshot.value["name"] as! NSString
print("Specific value: \(specificValue)") //a specific value
})
请注意,在这种情况下,每个用户节点都有一个 uid_x 作为键。这个唯一标识符是从 authData.uid 获得的。创建用户时。传统上,其他节点中的节点密钥将由 childByAutoId (或非 iOS 的 push() )
创建关于你的问题;根据用途,将 firebase 快照数据存储在字典中,并将这些字典(或 类)作为 tableView 数据源存储在数组中通常很方便。数组保持顺序。