Alamorafire + SwiftyJson + FacebookSDK
Alamorafire + SwiftyJson + FacebookSDK
我使用带有 Xcode 7.2.1 的 FBSDK 来检索用户配置文件信息,并使用 SwiftyJson 来处理和操作 json 数据。更改值/删除一些值后,我想使用 JSON 数据向我的 api 发出 post 请求。但是我在 swift.
中遇到了非常糟糕的类型问题
这是我发出 post 请求的代码:
let headers = [
"Content-Type": "application/json"
]
let userProfile = userProfile as? [String : AnyObject]
Alamofire.request(.POST, "http://localhost:8888/api/profile", parameters: userProfile, headers: headers, encoding:ParameterEncoding.URL) .response { request, response, data, error in
print(userProfile) //This prints nil
print(response) //This prints api error for expecting data
}
不幸的是我收到这个错误:
Cast from 'JSON' to unrelated type '[String : AnyObject]' always fails
如果我尝试将 JSON 数据直接发送到 API,我会收到此错误:
Cannot convert value of type 'JSON' to expected argument type '[String : AnyObject]?'
感谢任何帮助。我只想知道,如何将 JSON 对象转换为 String AnyObject?没有失败。或者发送 Json 对象作为 post / put / patch 请求数据 Swift 2.
JSON
是在 SwiftyJson
中定义的自定义类型。尝试在您的案例中使用 userProfile.dictionaryObject
来获取基础 swift Dictionary
.
以此解包可选字典
if let userProfile = userProfile.dictionaryObject {
Alamofire.request(.POST, "http://localhost:8888/api/profile", parameters: userProfile, headers: headers, encoding:ParameterEncoding.URL) .response { request, response, data, error in
print(userProfile) //This prints nil
print(response) //This prints api error for expecting data
}
}
我使用带有 Xcode 7.2.1 的 FBSDK 来检索用户配置文件信息,并使用 SwiftyJson 来处理和操作 json 数据。更改值/删除一些值后,我想使用 JSON 数据向我的 api 发出 post 请求。但是我在 swift.
中遇到了非常糟糕的类型问题这是我发出 post 请求的代码:
let headers = [
"Content-Type": "application/json"
]
let userProfile = userProfile as? [String : AnyObject]
Alamofire.request(.POST, "http://localhost:8888/api/profile", parameters: userProfile, headers: headers, encoding:ParameterEncoding.URL) .response { request, response, data, error in
print(userProfile) //This prints nil
print(response) //This prints api error for expecting data
}
不幸的是我收到这个错误:
Cast from 'JSON' to unrelated type '[String : AnyObject]' always fails
如果我尝试将 JSON 数据直接发送到 API,我会收到此错误:
Cannot convert value of type 'JSON' to expected argument type '[String : AnyObject]?'
感谢任何帮助。我只想知道,如何将 JSON 对象转换为 String AnyObject?没有失败。或者发送 Json 对象作为 post / put / patch 请求数据 Swift 2.
JSON
是在 SwiftyJson
中定义的自定义类型。尝试在您的案例中使用 userProfile.dictionaryObject
来获取基础 swift Dictionary
.
以此解包可选字典
if let userProfile = userProfile.dictionaryObject {
Alamofire.request(.POST, "http://localhost:8888/api/profile", parameters: userProfile, headers: headers, encoding:ParameterEncoding.URL) .response { request, response, data, error in
print(userProfile) //This prints nil
print(response) //This prints api error for expecting data
}
}