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

ios – 从一个从firebase中检索数据的闭包中获取数据

我正在尝试从Firebase检索数据并将该数据存储在检索该数据的闭包之外.

var stringNames = [String] ()
    ref?.observeEventType(.Value,withBlock: { snapshot in
        var newNames: [String] = []
        for item in snapshot.children {
            if let item = item as? FIRDataSnapshot {
                let postDict = item.value as! [String: String]
                newNames.append(postDict["name"]!)
            }
        }
        stringNames = newNames
    })
    print(stringNames)

stringNames返回空,但是当我从闭包内打印时,它有正确的数据.非常感谢任何帮助,谢谢!

解决方法

那是因为当您从Firebase获取数据时,调用是异步的.你可以做什么:

选项1 – 在闭包内设置逻辑(就像你在封闭内部打印var一样).

选项2 – 定义您自己的闭包,用于接收您的数据,如:

func myMethod(success:([String])->Void){

    ref?.observeEventType(.Value,withBlock: { snapshot in
        var newNames: [String] = []
        for item in snapshot.children {
            if let item = item as? FIRDataSnapshot {
                let postDict = item.value as! [String: String]
                newNames.append(postDict["name"]!)
            }
        }
        success(newNames)
    })
}

选项3 – 使用委托模式

protocol MyDelegate{
     func didFetchData(data:[String])
}

class MyController : UIViewController,MyDelegate{

    func myMethod(success:([String])->Void){
        ref?.observeEventType(.Value,withBlock: { snapshot in
           var newNames: [String] = []
           for item in snapshot.children {
               if let item = item as? FIRDataSnapshot {
                   let postDict = item.value as! [String: String]
                   newNames.append(postDict["name"]!)
               }
            }
            self.didFetchData(newNames)
        })
    }

    func didFetchData(data:[String]){
        //Do what you want
    }

}

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

相关推荐