gpt4 book ai didi

ios - 如何使用 getObjectInBackgroundWithId 和 saveInBackgroundWithBlock 从 Parse 检索数据

转载 作者:行者123 更新时间:2023-11-29 01:53:21 24 4
gpt4 key购买 nike

我正在尝试通过快速使用 Parse (V 1.7.5) 来检索数据。我能够使用 saveInBackgroundWithBlock 成功保存数据,但是当我尝试使用 getObjectInBackgroundWithId 检索数据时,我收到以下错误消息:

无法使用“(String, (PFObject!, NSError?) -> Void)”类型的参数列表调用“getObjectInBackgroundWithId”

    import UIKit
import Parse

class ViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()


Parse.setApplicationId("j6jI1g1gz003zqUQTVWez7AwPUedTiPLIcJp9tGP",
clientKey: "PEz03P1EUp6eK38wzlVCCvveOxXhzUGCbpGarFK1")

var userId = "2Zn8ZfFKsA"
var query = PFQuery(className: "score")


query.getObjectInBackgroundWithId("2Zn8ZfFKsA") {


(score: PFObject!, error: NSError?) -> Void in

if error == nil {

println(score)

} else {

println(error)

}
}
}

我也试过这样做:

    [query whereKey:"objectId" equalTo: userId];

[query findObjectsInBackgroundWithBlock: ^{ (score: PFObject!, error: NSError?) -> Void in

if error == nil {

println(score)

} else {

println(error)

}
}];

但是我得到了更多的错误..拜托,希望能从这里得到一个如何保持的答案。

最佳答案

这应该有效。

query.getObjectInBackgroundWithId("2Zn8ZfFKsA") {
(score: PFObject?, error: NSError?) -> Void in
if error == nil && score != nil {
println(score)
} else {
println("error")
}
}

关于ios - 如何使用 getObjectInBackgroundWithId 和 saveInBackgroundWithBlock 从 Parse 检索数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31167500/

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