繁体   English   中英

带有 SwiftyJSON 参数的 Alamofire 请求

[英]Alamofire request with SwiftyJSON parameters

我想知道如何将 SwiftyJSON 数组放入 Alamofire 请求的参数中。

实际上我使用此代码(Swift 3)来设置请求的参数:

let params = ["customObjects": customObjects.map({$0.toJSON()})]

...但是如果我尝试启动请求,这会引发异常:

uncaught exception 'NSInvalidArgumentException', reason: 'Invalid type in JSON write (_SwiftValue)'

“customObjects”是我的自定义模型类的数组。

如果您需要更多信息,请告诉我。

您可以将 SwiftyJSON 对象(此处称为yourJSON )转换为如下参数:

let parameters : Parameters = yourJSON.dictionaryObject ?? [:]

然后你可以在 Alamofire 请求中使用它,如下所示:

Alamofire.request("https://yourURL.com/somePath", method: .post, parameters: parameters, encoding:  JSONEncoding.default, headers: nil).responseJSON { response in
   // ... do whatever you would like with the response 
}

我自己找到了解决方案:

let params = ["customObjects": customObjects.map({$0.toDictionary()})]

这里是我的 CustomObject 中的 toDictionary() 函数:

func toDictionary() -> [String: Any] {
    let dict: [String: Any] = [
        "exampleKey": "exampleValue",
        "exampleKey2": "exampleValue2"
    ]

    return dict
}

我想这是因为您可以使用encoding: JSONEncoding.default设置 Alamofire encoding: JSONEncoding.default

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM