gpt4 book ai didi

iphone - 如何使用 Alamofire SWIFT 在 post api 中发送 JSON

转载 作者:搜寻专家 更新时间:2023-11-01 05:36:15 24 4
gpt4 key购买 nike

我需要在 post api 中使用 alamofire 在 swift 中发送 JSON 格式。需要发送数据的方式是

{
"data": [{
"id": "1015683997",
"name": "Pawel"
}, {
"id": "108350039247",
"name": "Randeep"
}, {
"id": "115607797616",
"name": "Mohit"
}]
}

我现在能够生成的方式是:

["data": {
data = (
{
id = 101583997;
name = "Pawel";
},
{
id = 108359247;
name = "Randeep";
},
{
id = 11567616;
name = "Mohit ";
}
);
}
]

使用下面提到的方式生成json格式。

for i in 0..<self.arrFriendsList.count
{

let dictFrndList:[String: AnyObject] = [
"id" : arrFriendsList[i].valueForKey("id")!,"name" : arrFriendsList[i].valueForKey("name")!
]

arrFrndList.addObject(dictFrndList)
}

然后,

let dictFBFrndList: [String: AnyObject] = [

"data":arrFrndList
]

然后,

let params: [String: AnyObject] = [

"access_token" : accessToken,
"data":dictFBFriends
]

所以,请指导我。我已经花了一天多的时间了。提前致谢。

最佳答案

我支持 Larme 所说的,你应该在参数中使用键“data”而不是 dictFBFrndList 发布“arrFrndList”。

关于iphone - 如何使用 Alamofire SWIFT 在 post api 中发送 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38825757/

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