Firebase Documentationsによると、Firebaseリアルタイムデータベースにノードを作成する場合は、値を任意のキーに設定するだけです。ここの値はNSDictionaryでなければなりません。
これは、あなたが参照できるコードです:
// create a new node
[[[_ref child:@"users"] child:user.uid] setValue:@{@"username": username}];
// you can also use update to create a new node
NSString *key = [[_ref child:@"posts"] childByAutoId].key;
NSDictionary *post = @{@"uid": userID,
@"author": username,
@"title": title,
@"body": body};
NSDictionary *childUpdates = @{[@"/posts/" stringByAppendingString:key]: post,
[NSString stringWithFormat:@"/user-posts/%@/%@/", userID, key]: post};
[_ref updateChildValues:childUpdates];
はそれがお役に立てば幸いです。
私はウェブサイトでそれを行うことができるかどうかを知りたかったので、モバイルユーザーはjsonを取得できます –
できることを確かめてください!上記のドキュメントに詳細があります。 –