xcode – Alamorafire SwiftyJson FacebookSDK

我使用FBSDK和 Xcode 7.2.1来检索用户配置文件信息,并使用 SwiftyJson来处理和操作json数据.更改值/删除一些后,我想使用JSON数据向我的api发送一个帖子请求.但是我很快就遇到了非常糟糕的类型问题.

这是我发布帖子请求的代码

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?没有失败.或者使用Swift 2将Json对象作为post / put / patch请求数据发送.

解决方法

JSON是SwiftyJson中定义的自定义类型.尝试在您的情况下使用userProfile.dictionaryObject来获取底层的swift Dictionary.

通过此解包可选字典

if let userProfile = userProfile.dictionaryObject {
    Alamofire.request(.POST,error in
          print(userProfile) //This prints nil
          print(response) //This prints api error for expecting data
    }
}

相关文章

背景 前端时间产品经理决定使用百度统计,使得 工程B 中原统计sdk-友盟统计,需要被去除。之前尝试去除...
结论: alloc负责分配内存和创建对象对应的isa指针; init只是返回alloc生成的对象。 所以alloc后,多次...
更新 如果UI愿意把启动图切割成n份,按一定约束在launchscreen.storyboard中进行排版,启动图效果会更好...
最近在看一本书《Effective OC 2.0》,今天看到有个tip是OC适中循环各自优劣性,作者最终推荐此块循环。...
// // ViewController.m // paintCodeTestOC //gif // Created by LongMa on 2019/7/25. // #import &a...
背景介绍 一般情况下,出于省电、权限、合理性等因素考虑,给人的感觉是很多奇怪的需求安卓可以实现,但...