热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

使用Firebase3.x的SetValue完成阻止-SetValueCompletionBlockwithFirebase3.x

InFirebase2.5.1,thiswasworking:在Firebase2.5.1中,这是有效的:letpost1RefsendRequestRef.childByA

In Firebase 2.5.1, this was working:

在Firebase 2.5.1中,这是有效的:

let post1Ref = sendRequestRef.childByAutoId()
post1Ref.setValue(request, withCompletionBlock: {( error:NSError?, ref:Firebase!) in

})

However, I couldn't figure out how to achieve it in 3.x (as the docs for completion doesn't really tell it)

但是,我无法弄清楚如何在3.x中实现它(因为完成的文档并没有真正告诉它)

let post1Ref = sendRequestRef.childByAutoId()
post1Ref.setValue(request, withCompletionBlock: {( error:NSError?, ref:Firebase!) in
    if (error != nil) {
       print("ERROR")
    } else {
       print("Success")
    }
})

This throws an error:

这会引发错误:

Use of unresolved Firebase

使用未解决的Firebase

What is the proper way of handling completion block with Firebase 3.x?

使用Firebase 3.x处理完成块的正确方法是什么?

1 个解决方案

#1


20  

Use

使用

ref.setValue(object) { (error, ref) -> Void in

}

Here ref is FIRDatabaseReference

这里ref是FIRDatabaseReference


推荐阅读
author-avatar
唯爱WE创丶
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有