我从服务器获得响应并将此响应转换为NSDicitonary。我的代码如下:
Alamofire.request("MyURL", method: .post, parameters:attributes, encoding: URLEncoding.default, headers: [:]).responseJSON {
response in
switch response.result {
case .success:
let swiftyJsonVar = response.result.value!
do {
if let dicObj = swiftyJsonVar as? NSDictionary {
print(dicObj)
但我的问题是,我的一个密钥是unicode字符\u{20b9}
,当我从response.result.value将其转换为NSDictionary时,它又向unicode字符添加了一个斜杠,如\\u{20b9}
。< / p>