我将RxCoCoa和RxSwift用于UITableView出价。 问题是由于以下提到的绑定错误导致连接丢失或服务器错误(我已处理)以外的其他连接错误导致我的应用崩溃。我的问题是如何处理连接错误?
fileprivate func getNextState() {
showFullPageState(State.LOADING)
viewModel.getProductListByID(orderGroup: OrderGroup.SERVICES.rawValue)
.do(onError: {
showStatusError(error: $0)
self.showFullPageState(State.CONTENT)
})
.filter {
$0.products != nil
}
.map {
$0.products!
}
.bind(to: (self.tableView?.rx.items(cellIdentifier: cellIdentifier, cellType: ProductCell.self))!) {
(row, element, cell) in
self.showFullPageState(State.CONTENT)
cell.product = element
}
.disposed(by: bag)
self.tableView?.rx.setDelegate(self).disposed(by: bag)
}
这是我的 ViewModel :
func getProductListByID(orderGroup: String, page: String = "1", limit: String = "1000") -> Observable<ProductRes> {
return orderRegApiClient.getProductsById(query: getProductQueryDic(stateKey: getNextStateID(product: nextProduct)
, type: orderGroup, page: page, limit: limit)).map {
try JSONDecoder().decode(ProductRes.self, from: $0.data)
}.asObservable()
}
我将Moya用于网络层,如下所示:
func getProductsById(query: [String: String]) -> Single<Response> {
return provider.rx.request(.getProductsById(query))
.filterSuccessfulStatusCodes()
}
答案 0 :(得分:1)
您没有在任何地方处理错误。我的意思是您在do
运算符中确认了错误,但实际上并不能处理该错误,只是允许它传递到无法处理错误的表视图中。
查找catchError
系列运算符以获取解决方案。可能.catchErrorJustReturn([])
就是您所需要的。
在评论中,您说:
...我不想将空数组返回到我的表。我想向客户显示错误,客户可以重试服务
在这种情况下,您应该仅将.catchError
用于成功链,并为错误建立单独的链,如下所述。
fileprivate func getNextState() {
showFullPageState(State.LOADING)
let products = viewModel.getProductListByID(orderGroup: OrderGroup.SERVICES.rawValue)
.share()
products
.catchError { _ in Observable.never() }
.filter { $0.products != nil }
.map { $0.products! }
.bind(to: tableView!.rx.items(cellIdentifier: cellIdentifier, cellType: ProductCell.self)) {
(row, element, cell) in
self.showFullPageState(State.CONTENT)
cell.product = element
}
.disposed(by: bag)
products
.subscribe(onError: { error in
showStatusError(error: error)
self.showFullPageState(State.CONTENT)
})
.disposed(by: bag)
self.tableView?.rx.setDelegate(self).disposed(by: bag)
}
您具有设置代码的方式,用户重试该服务的唯一方法是再次调用该函数。如果要让用户在声明性更强的庄园中重试,则需要将链绑定到用户可以触发的可观察对象。