Browse Source

Updated the JSON response serialization code sample in the README.

Christian Noon 10 năm trước cách đây
mục cha
commit
af231fd15e
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      README.md

+ 2 - 0
README.md

@@ -179,6 +179,8 @@ Alamofire.request(.GET, "http://httpbin.org/get")
          .responseJSON { _, _, result in
              print(result)
              debugPrint(result)
+             
+             print("Parsed JSON: \(result.value)")
          }
 ```