gpt4 book ai didi

swift - 在 Swift Playground 中查看 GET 请求结果

转载 作者:行者123 更新时间:2023-11-30 10:05:29 26 4
gpt4 key购买 nike

我们正在尝试使用 Playground 测试 Alomofire GET 请求。它正在工作,但我们在 Playground 中看不到请求返回的 JSON。你怎么能这样做呢?请注意,单击屏幕截图中的向右箭头不会显示任何 JSON。

Playground :

enter image description here

request's JSON 响应:

{
"userId": 1,
"id": 2,
"title": "qui est esse",
"body": "est rerum tempore vitae\nsequi sint nihil reprehenderit dolor beatae ea dolores neque\nfugiat blanditiis voluptate porro vel nihil molestiae ut reiciendis\nqui aperiam non debitis possimus qui neque nisi nulla"
}

最佳答案

您的 Playground 在请求完成之前就结束了。通过设置 needsIndefiniteExecution = true 无限期暂停:

import UIKit
import SwiftyJSON
import Alamofire
import XCPlayground

Alamofire.request(.GET, "http://jsonplaceholder.typicode.com/posts/2")
.responseJSON { response in
let json = JSON(data: response.data!)
print(json)
}

XCPlaygroundPage.currentPage.needsIndefiniteExecution = true

关于swift - 在 Swift Playground 中查看 GET 请求结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36298580/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com