我正在尝试通过Alamofire发送简单的http发布请求。我需要用户名和密码,请求的主体是json格式。 首先我不确定我的代码是否正确(Apple开发人员初学者。) 其次,每次兴奋代码时我都很困惑,它根本没有进入responseJSON块。能有人给我一个提示,谢谢 这是我的代码
func sendTestResult(result: Int, testrun: Int, testcaseindex: Int) -> Bool{
var resp : Bool = false;
//add testcase info
var url: String = self.testrailsUrl + "/\(testrun)/\(testcaseindex)"
//add authentication info
// url = testrailsUrl + "/basic-auth/\(self.testrailsUserName)/\(self.testrailsPassword)"
assert(url == "http://ypdine.testrail.net/index.php?/api/v2/add_result_for_case/4/3",
"the post information isn't right")
let parameters = ["status_id": [result]]
print("here sending the request")
Alamofire.request(.POST, url, parameters: parameters, encoding: .JSON)
.authenticate(user: self.testrailsUserName, password: self.testrailsPassword)
.validate(statusCode: 200..<300)
.responseJSON { response in
print(response.request) // original URL request
print(response.response) // URL response
print(response.data) // server data
print(response.result) // result of response serialization
if let JSON = response.result.value {
print("JSON: \(JSON)")
}
}
return resp
}
答案 0 :(得分:0)
尝试删除&#39; - &gt;布尔&#39;并且&#39; return resp&#39;从你的职能,给Alamofire一个回应的机会。