我正在开发一款适用于Apache Usergrid的iOS应用。到目前为止一切正常,我可以注册用户,登录,查询......
btw:我正在使用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的帮助下看到图像。我做错了什么?
答案 0 :(得分:2)
当entity.hasAsset
为假时,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.
}
}
}
值得注意的是,在我的前叉here上可以找到更新的(测试版)swift sdk。