我想在swift 3中的数组中创建这种类型的字典,我做了它,但它不是大括号,而是方括号。我想要大括号中的字典。
[{" interest_id":1},{" interest_id":2},{" interest_id":3}]
答案 0 :(得分:0)
你可以这样做:
let dictArray = [ [ "interest_id":1 ] , ["interest_id":2], ["interest_id":3]]
do {
let jsonData = try JSONSerialization.data(withJSONObject: dictArray, options: .prettyPrinted)
let json = NSString(data: jsonData, encoding: String.Encoding.utf8.rawValue)!
print("json data: ", json )
}
catch {
print("error: ", error.localizedDescription)
}