gpt4 book ai didi

swift - 数据库引用错误

转载 作者:行者123 更新时间:2023-11-28 12:08:38 25 4
gpt4 key购买 nike

在我的 iOS 项目中,我使用 Firebase 创建实时数据库。我已经imported it在 AppDelegate.swift 中。

imported it

尝试在应用程序中引用我的数据库时,一个 error出现。

error

关于如何解决这个问题的任何想法?这是代码:

import UIKit 

import Firebase


class TableViewController: UITableViewController {


override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.

post()

}

func post(){


let title = "Title"
let message = "Message"

let post : [String : AnyObject] = ["title" : title as AnyObject,
"message" : message as AnyObject]

let databaseRef = FirebaseApp.database().reference()

databaseRef.child("Posts").childByAutoId().setValue(post)
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()

// Dispose of any resources that can be recreated.
}


}

最佳答案

需要先配置firebase,例如:

FirebaseApp.configure()

然后就可以引用数据库了:

let databaseRef = Database.database().reference()

FirebaseApp不包含名为 database()

的方法

关于swift - 数据库引用错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48968355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com