连接所有组件时(iOS,Swift)Firebase实时数据库无法写入

时间:2019-03-02 16:29:54

标签: ios swift database firebase firebase-realtime-database

我是Firebase的新手,正在尝试将一些数据写入Firebase。 我的问题如下: 已安装的Pod“ Firebase / Core”           pod'Firebase / Database' coacopods 并在Xcode中导入Firebase ,还更改了实时数据库规则,“读取”和“写入”均为真已连接的所有内容到Google Firebase,但是仍然不能在实时数据库中写数据吗?有人像我一样有同样的问题吗?谁能帮我修复它?

代码 第一部分(AppDelegate.swift): 导入UIKit 导入Firebase

@UIApplicationMain AppDelegate类:UIResponder,UIApplicationDelegate {

var window: UIWindow?


func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
    // Override point for customization after application launch.

    **FirebaseApp.configure()**

    return true
}

第二部分(ViewController.swift): 导入UIKit 导入Firebase 导入FirebaseDatabase

ViewController类:UIViewController {

override func viewDidLoad() {
    super.viewDidLoad()

    **let ref = Database.database().reference()**

    **ref.child("someid/name").setValue("mike")**
}

} Xcode或firebase中没有显示任何错误消息。

0 个答案:

没有答案