我的方案如下所示:我有一個類中有一個函數,該函數向NSURLSession的服務器發出POST請求。在另一個不在該類中的函數中,我將該函數與其中的任務一起調用,我認爲這個函數是異步運行的。我遇到以下問題:當我從服務器下載JSON響應並將其寫入一個變量並返回時,我寫入的變量仍然爲零,因爲它沒有等待線程/任務完成下載並返回nil的初始值。等待下載任務在NSURLSession中完成
所以我的問題是我該如何等待完成任務,然後繼續整個程序。
這是我的課與請求功能:
class DownloadTask {
var json:NSDictionary!
var cookie:String!
var responseString : NSString = ""
func forData(completion: (NSString) ->()) {
var theJSONData:NSData!
do {
theJSONData = try NSJSONSerialization.dataWithJSONObject(json, options: NSJSONWritingOptions())
} catch _ {
print("error")
}
let request = NSMutableURLRequest(URL: url)
request.HTTPMethod = "POST"
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
if cookie != nil {
request.setValue(cookie, forHTTPHeaderField: "Cookie")
}
request.HTTPBody = theJSONData
let task = NSURLSession.sharedSession().dataTaskWithRequest(request) {
data, response, error in
if error != nil {
print("error")
return
} else {
completion(NSString(data: data!, encoding: NSUTF8StringEncoding)!)
}
}
task.resume()
}
}
這是我的調用代碼:
let task = DownloadTask()
task.forData { jsonString in
do {
if let json: NSDictionary = try NSJSONSerialization.JSONObjectWithData(jsonString.dataUsingEncoding(NSUTF8StringEncoding)!, options: NSJSONReadingOptions.MutableContainers) as? NSDictionary {
if json["error"] != nil {
authenticated = false
} else {
let result = json["result"] as! NSDictionary
user.personId = result["personId"] as! NSNumber
user.sessionId = result["sessionId"] as! NSString
print("test0")
authenticated = true
}
}
}
catch _ {
print("error")
}
}
print("test1")
輸出是:
test1
test0
我不能高手在該任務之後創建變量user.sessionId。
你最終搞清楚了嗎? – Mihado