gpt4 book ai didi

swift - [错误] : object not found for update Swift + Parse. com

转载 作者:搜寻专家 更新时间:2023-11-01 05:44:45 27 4
gpt4 key购买 nike

类名:产品列名称:喜欢

我打印 1 和 2 只是为了检查

var objectID = "wbgNSvui5b" //object are exist in my database

var query = PFQuery(className:"Product")
var P = query.getObjectWithId(objectID)
P.incrementKey("Likes")
P.saveInBackgroundWithBlock {
(success: Bool, error: NSError?) -> Void in
if (success) {
println("1")
// The score key has been incremented
} else {
println("2")

// There was a problem, check error.description
}
}

始终打印 2 未找到对象进行更新(代码:101,版本:1.7.4)

最佳答案

我认为您不能在方法名称和返回值之间的闭包语法中进行换行(我认为 in 需要是换行之前的最后一件事)。也许您只是为 Stack Overflow 格式化了代码,但只是想我会提到这一点:

P.saveInBackgroundWithBlock { (success: Bool, error: NSError?) -> Void in
if success{
println("success")
}else{
println(error!.localizedDescription)
}
}

祝你好运。 :)

关于swift - [错误] : object not found for update Swift + Parse. com,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30963558/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com