瀏覽代碼

Updated the JSON response serialization code sample in the README.

Christian Noon 10 年之前
父節點
當前提交
af231fd15e
共有 1 個文件被更改,包括 2 次插入0 次删除
  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)")
          }
 ```