2017-05-15 12 views
0

firebaseに "People"属性を設定する必要があります。私はSWIFTを使って辞書属性を設定する方法を知らない。 私が試した以下のコードを追加しました。Firebaseで属性を設定する方法は?

let key = snapshot.key 

     let upload = ["id":key, 
        "status":status,] as [String : Any] 

     databaseRef.child("location").child(key).setValue(upload) 

This image is firebase data

答えて

0

これを試してみてください:

let key = snapshot.key 

    let updates: [String: Any] = [ 
    "/id": key, 
    "/people/name1": <yourValue>, 
    "/people/name2": <yourValue>, 
    "/status": status 
    ] 

    databaseRef.child("location").child(key).updateChildValues(updates) 

はそれが

を役に立てば幸い
関連する問題