我正在使用可与Apache Usergrid一起使用的iOS应用程序。到目前为止,一切正常,我可以注册用户,登录,查询...

顺便说一句:我正在使用Usergrid 2.1.0版本,该版本在我自己的服务器上运行。

现在,我想存储用户个人资料图片。我这样做是这样的:

let image = UIImage(named:"user.png")!
let asset = UsergridAsset(fileName: "profilepic", image: image, imageContentType: .Png)!

Usergrid.currentUser!.uploadAsset(asset, progress: nil) { (response, asset, error) -> Void in
    if response.ok {
        print("Picture saved")
    } else {
        self.showErrorMessage("Picture couldn't be saved")
        print(response.description)
    }
}

这似乎可行,因为在查看Portal时,我可以在用户实体中看到有关“文件元数据”的信息。现在的问题是:如何找回图像?我尝试了以下方法:
Usergrid.currentUser?.downloadAsset("image/png", progress: nil, completion: { (asset, error) -> Void in
    if (error == nil) {
        if let image = UIImage(data: (asset?.data)!) {
            dispatch_async(dispatch_get_main_queue(), { () -> Void in
                self.profileImageButton.setImage(image, forState: .Normal)
            })
        }
    }
}

但是每次我收到错误“实体没有资产”时,实际上我可以在Firefox RESTClient的帮助下看到图像。我究竟做错了什么?

最佳答案

entity.hasAsset为false时(又称为entity.asset == nil && entity.fileMetaData?.contentLength <= 0),将发生错误“实体没有附加资产”。

如果您要上传资产并在此后直接下载,Usergrid.currentUser可能尚未更新其fileMetaData或资产实例属性。

在尝试检索资产数据之前,我将尝试通过调用Usergrid.currentUser!.reload()更新当前用户。

Usergrid.currentUser!.reload() { response in
    if response.ok {
         Usergrid.currentUser!.downloadAsset("image/png", progress:nil) { downloadedAsset, error in
             // Handle downloaded asset here.
         }
     }
}

还值得注意的是,可以在我的fork here上找到swift sdk的最新版本(测试版)。

关于ios - Apache Usergrid Swift SDK访问 Assets 镜像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35586140/

10-13 08:54