我必须接收JSON数据,指定我需要传递给url的有效负载。它看起来像这样:
{
"token": "string",
"body": {
"token": "another string",
"intValue": 1,
"somethingElse": "another string"
}
}
我知道body将具有始终为字符串或数字的属性。但是我不知道用一个字符串或者int的值对的关键是什么。
然后我需要用Alamofire发送那个身体,我这样做:
// parsing the data received with the Codable:
struct NotificationDetails: Codable {
let token: String
let body: [String:String]?
let
init (token: String) {
self.token = token
self.body = nil
}
init (token: String, body: [String:String]) {
self.token = token
self.body = body
}
}
请注意,我不能只使用Alamofire的方便参数类型:
struct NotificationDetails: Codable {
let token: String
let body: Parameters?
init (token: String) {
self.token = token
self.body = nil
}
init (token: String, body: Parameters) {
self.token = token
self.body = body
}
}
因为那是不可编码的,就像AnyObject一样。
// then elsewhere, using that data
guard let bodyJSON = localNotificationDetails.body else {
callback()
return
}
AF.request(url, method:method, parameters: bodyJSON).responseJSON(queue: queue) { response in
但现在我发现我的一些数据将是数字而不是字符串,我想知道我现在该如何做到这一点?
使用bodyJson : [String : AnyObject]?
例
let bodyJson = [
"key" : "value",
"key" : value,
"token": "string"
] as? [String : AnyObject]
在json body请求中传递此类数据。
Alamofire.request(url, method: .post, parameters: bodyJson, encoding: URLEncoding.httpBody, headers: headers).responseJSON { (responseObject) -> Void in
print(responseObject)
}
你可以在responseObject
上执行其他操作