微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如何解决在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;
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。