在Firebase中访问用户帐户时生成补全错误

问题描述

我正在尝试从Firebase表中提取用户个人资料时创建完成块。在允许它传回值之前,我需要先完成它。

这是我到目前为止所拥有的:

func getProf(email: String,pass: String,completionBlock: @escaping (_ success: Bool) -> (Int)) {
        let ref = Database.database().reference()
        let userID = Auth.auth().currentUser?.uid
        ref.child("users").child(userID!).observeSingleEvent(of: .value,with: { (snapshot) in
            let value = snapshot.value as? NSDictionary
            self.zDaily = value?["qday"] as? Int ?? 0
        }) {
            if let error = error {
                completionBlock(false)
            } else {
                completionBlock(true)
                return zDaily
            }
        }
        
    }

我遇到以下错误

Cannot convert value of type '() -> _' to expected argument type '((Error) -> Void)?'

我不确定如何解决此问题,任何建议将不胜感激。

解决方法

我不确定是否能解决该错误。如果没有,那么我想我知道这个问题,那将是您的错误块和您的watchEvent所致。

编辑:刚刚进行了更改,以从observeEvent返回错误对象。

if (existingFilm.Genre.Id != film.Genre.Id)
{
    var genre = _context.Genre.FirstOrDefault(x => x.Id == film.Genre.Id);
    // Update the fields needed except the id

    existingFilm.Genre = genre;
}