gpt4 book ai didi

ios - 使用 RxSwift 定期调用 API

转载 作者:搜寻专家 更新时间:2023-10-31 22:04:18 26 4
gpt4 key购买 nike

我正在尝试定期(每 10 秒)调用一个返回模型的 Json 对象的 API:

struct MyModel { 
var messagesCount: Int?
var likesCount: Int?
}

如果 messageCountlikesCount 值发生变化,则更新 UI。我尝试了 Timer 解决方案,但我发现它有点乱,我想要一个使用 RxSwift 和 RxAlamofire 的更干净的解决方案。

非常感谢任何帮助,因为我是 Rx 的新手。

最佳答案

欢迎使用 StackOverflow!

为此需要很多运算符,我建议在 ReactiveX Operator page 上查找它们,每当我忘记某事时,我都会检查一下。

首先,确保MyModel符合 Decodable因此它可以从 JSON 响应构建(参见 Codable )。

let willEnterForegroundNotification = NotificationCenter.default.rx.notification(.UIApplicationWillEnterForeground)
let didEnterBackgroundNotification = NotificationCenter.default.rx.notification(.UIApplicationDidEnterBackground)

let myModelObservable = BehaviorRelay<MyModel?>(value: nil)

willEnterForegroundNotification
// discard the notification object
.map { _ in () }
// emit an initial element to trigger the timer immediately upon subscription
.startWith(())
.flatMap { _ in
// create an interval timer which stops emitting when the app goes to the background
return Observable<Int>.interval(10, scheduler: MainScheduler.instance)
.takeUntil(didEnterBackgroundNotification)
}
.flatMapLatest { _ in
return RxAlamofire.requestData(.get, yourUrl)
// get Data object from emitted tuple
.map { $0.1 }
// ignore any network errors, otherwise the entire subscription is disposed
.catchError { _ in .empty() }
}
// leverage Codable to turn Data into MyModel
.map { try? JSONDecoder().decode(MyModel.self, from: $0) } }
// operator from RxOptional to turn MyModel? into MyModel
.filterNil()
.bind(to: myModelObservable)
.disposed(by: disposeBag)

然后,您可以继续将数据流传输到您的 UI 元素中。

myModelObservable
.map { $0.messagesCount }
.map { "\($0) messages" }
.bind(to: yourLabel.rx.text }
.disposed(by: disposeBag)

我没有运行此代码,因此此处可能存在一些拼写错误/缺少转换,但这应该为您指明了正确的方向。随时要求澄清。如果真的是 Rx 的新手,我建议阅读 Getting Started guide .这很棒! Rx 非常强大,但我花了一段时间才掌握。

编辑

正如@daniel-t 所指出的,使用Observable<Int>.interval 时不需要后台/前台簿记。 .

关于ios - 使用 RxSwift 定期调用 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52311965/

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