gpt4 book ai didi

iOS swift json PUT 参数中的请求字符串数组

转载 作者:行者123 更新时间:2023-11-29 00:49:01 26 4
gpt4 key购买 nike

我正在使用 Alamofire 和 SwiftyJSON。我正在尝试使用以下结构发出请求

{
"email":"ppp@ppp.com",
"password":"pppppp",
"categories": [
{"id":"2"},
{"id":"1"},
{"id":"6"},
{"id":"5"}
]
}

我正在使用:

let parameters = [     
"email" : userEmail,
"categories" : userPassword,
"categorias" : selectedCategoriesArray]

//其中 selectedCategoriesArray 是 [[String]]()

我在一个循环中填充了我的 selectedCategoriesArray,此行修改了数组:

selectedCategoriesArray.append(["id", "2"]) //where 2 can be any other number

Alamofire.request( .PUT, url, parameters)

它似乎工作正常但事实并非如此,我不知道我的字符串数组是否采用正确的格式发送到 WS,或者我是否需要以特殊方式对其进行编码?

有没有人用过这样的东西,一点帮助将不胜感激。谢谢!

最佳答案

在这种情况下,我认为您的数组应该具有 [[String: String]] 类型。

let userEmail = "myemail@email.com"
let userPassword = "123456"

var selectedCategoriesArray: [[String: String]] = []
for i in 0...5 {
selectedCategoriesArray.append(["id": String(i)])
}

let parameters = [
"email" : userEmail,
"password" : userPassword,
"categories" : selectedCategoriesArray
]

关于iOS swift json PUT 参数中的请求字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38321562/

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