作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 ViewController 中创建了一个用户配置文件编辑页面。当用户仅编辑文本字段并点击保存按钮时,即使图片相同,它仍会再次上传。我想检查图片是否相同,跳过当前图片的上传。解析还使用相同的图像文件名,因此按名称检查将不起作用,我不知道还能使用什么。有任何想法吗?这是我的代码:
let imageUploadData = UIImageJPEGRepresentation(imageUpload.image!, 1)
if (imageUploadData != nil) {
//Here what I tried:
if (currentImage.image != imageUploadData) {
print("Image will be uploaded")
let imageFileObject = PFFile(data: imageUploadData!)
myUser.setObject(imageFileObject!, forKey: "license_image")
}else {
print("Image is the same, skipping upload")
}
}
myUser.saveInBackgroundWithBlock {(success: Bool, error:NSError?) -> Void in
self.clearAllNotice() //Clear activity indicator
if (error != nil) {
print("...")
}
if (success) {
print("Saving")
}
我尝试了什么,在下面的评论中提到
let userImageFile = PFUser.currentUser()?.objectForKey("license_image") as! PFFile
userImageFile.getDataInBackgroundWithBlock {(imageData: NSData?, error: NSError?) -> Void in
if (error == nil) {
let image = UIImage(data:imageData!)
if image == self.imageUpload.image {
print("image is the same")
}
else {
print("image not the same")
}
}
}
我也试过这个:
let userImageFile = PFUser.currentUser()?.objectForKey("license_image") as! PFFile
userImageFile.getDataInBackgroundWithBlock {(imageData: NSData?, error: NSError?) -> Void in
if (error == nil) {
let image = UIImage(data:imageData!)
let imageFileObject = PFFile(data: imageUploadData!)
if ((image?.isEqual(imageFileObject)) != nil){
print("image is the same")
}
else {
print("image not the same")
}
}
}
没有运气
最佳答案
只需获取他们已经保存的图像数据,并将其与即将保存的图像数据进行比较,如果相同则不允许他们继续或任何您的用例.
关于ios - 避免在 Swift 中将重复的图像上传文件上传到 Parse.com,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36391237/
我是一名优秀的程序员,十分优秀!