0
RxAlamorefireを使用してアプリケーションでネットワークタスクを処理しています。キーでjsonを取得するとエラーが発生する
私の問題は:私がリクエストをしてjsonを返すときです。 jsonにキー "error"がある場合、onNext通知の代わりにエラー通知を出す必要があります。
私のコードはこの1つのようなものです:map
内
let observable = RxAlamofire.json(.get, url, parameters: nil, encoding: URLEncoding.default, headers: header)
.map { (json) -> SomeObject? in
//Should check json maybe not in ".map" to see if the json contain "error" then emit onError notification.
return Mapper<SomeObject>().map(JSONObject: json)
}