gpt4 book ai didi

swift - 尝试将字典发布到我的后端

转载 作者:行者123 更新时间:2023-11-30 13:01:52 26 4
gpt4 key购买 nike

我正在尝试使用 Alamofire 将字典发布到我的后端:

这是我的代码:

func postCheckUserPhonenumbers(phonenumbers:[String], completionHandler: (([AnyObject?], AnyObject?) -> Void)) {
let urlString = Constant.apiUrl().stringByAppendingFormat(Constant.apiPostCheckUserPhonenumbers)

let phoneNumbersDictionary = phonenumbers.map({ ["number": $0] })

let json = JSON(phoneNumbersDictionary)
print(json)

Alamofire.request(.POST, urlString, parameters: phoneNumbersDictionary, encoding: .JSON).validate().responseJSON(completionHandler: {response in
if response.result.isSuccess{
if let json = response.result.value {
let json = JSON(json)

}
}
if response.result.isFailure{

}
})
}

它不会编译,因为phoneNumbersDictionairy不符合预期的参数:

enter image description here

然而, print(json) 正在打印我在 postman 中所拥有的内容。这是我要发布的正文。打印的声明:

[
{
"number" : "85555512"
},
{
"number" : "85551212"
},
{
"number" : "55648583"
}
]

我的 postman :

enter image description here

我怎样才能做到这一点?

最佳答案

如错误消息所述,phonenumbers.map({["number": $0]})返回一个 [[String:String]] 类型的数组,正如您在我所附的图片中看到的。 Playground

Alamofire 需要一个 [String: AnyObejct]? 类型的数组作为参数。

但也许 How to send a post request with bodySending json array via alamofire可以帮助你。

关于swift - 尝试将字典发布到我的后端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39828970/

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