PUT如何在Firebase中请求

时间:2017-04-11 10:32:46

标签: ios objective-c firebase request

我有titleFieldUITextView。如何在Firebase中实施PUT请求并将数据从文本字段发送到Firebase?

2 个答案:

答案 0 :(得分:0)

NSDate * now = [NSDate date]; NSDictionary *post = @{@"sender": target text filed (self.textfield.text), @"message": self.textView.text, @"time": [NSDateFormatter localizedStringFromDate:now dateStyle:NSDateFormatterNoStyle timeStyle:NSDateFormatterShortStyle], }; NSDictionary *childUpdates = @{@"your storage link goes here/message.json": post}; [_ref updateChildValues:childUpdates]

答案 1 :(得分:0)

这取决于你想把它放在哪里。 如果你有一个简单的结构,找到数据库单元格的链接。 https://YOUR_DATABASE_REF.firebaseio.com/CHILD/CHILD_OF_CHILD/

minsDegrees