Swift:Alamofire和ObjectMapper的使用

对于swift的网络请求用的是第三方的框架Alamofire,简单看了下算是可以使用了,但是还有很多不理解的地方,这里介绍使用方法,为了使自己方便理解,如果错误敬请指正!!

           Alamofire.request("https://httpbin.org/get", method: HTTPMethod.get, parameters: nil, encoding: URLEncoding.default, headers: nil).responseJSON { (response) in
        print("responseJSON:--\(response)")
        if let error = response.result.error{
            //如果有错误信息就打印错误,没有就解析数据
            print(error)
        }else if let jsonresult = response.result.value{
            let JSONDictionary = JSON(jsonresult)
            //用SwiftJSON解析数据
            let data = JSONDictionary["headers"].dictionary
            let accept = data?["Accept"]
            print("accept--\(accept!)")//加上!强制解析使其变为非可选类型
        }
    }      

对于GET方法我没有使用参数所以parameters设置为nil,可以根据自己的需要进行设置参数。
具体可以参考:
http://www.cnblogs.com/sunshine-anycall/p/5170372.html
http://www.cnblogs.com/taoxu/p/5462599.html

         //  ?? 这个符号,我怕有初学者忘记了的提醒一下,A ?? B  这是一个 NIL合并运算符,它的作用是如果 A 不是NIL 就返回前面可选类型参数 A 的确定值, 如果 A 是NIL 就返回后面 B 的值!A和B之间类型的注意点我就不说了,忘记了去看书,,哈哈哈

http://blog.csdn.net/perla_/article/details/52396284 关于swift上拉加载和下拉刷新的博客

你可能感兴趣的:(Swift:Alamofire和ObjectMapper的使用)