我创建了一个简单的项目来检查像RxAlamofire和AlamofireObjectMapper这样的库。我有一个简单的ApiService端点,其中PHP脚本工作正常并返回JSON。我想调用recipeURL并使用flatMap运算符获取响应,并将其提供到Mapper中,在这里我应该得到Recipe对象。我该怎么做?
还是有别的办法?

class ApiService:  ApiDelegate{
    let recipeURL = "http://example.com/test/info.php"

    func getRecipeDetails() -> Observable<Recipe> {
        return request(.get, recipeURL)
            .subscribeOn(MainScheduler.asyncInstance)
            .observeOn(MainScheduler.instance)
            .flatMap({ request -> Observable<Recipe> in
                let json = ""//request.??????????? How to get JSON response?
                guard let recipe: Recipe = Mapper<Recipe>().map(JSONObject: json) else {
                    return Observable.error(ApiError(message: "ObjectMapper can't mapping", code: 422))
                }
            return Observable.just(recipe)
        })
    }
}

最佳答案

RxAlamofire的自述中,似乎有一种方法json(_:_:)存在于库中。
通常,您宁愿使用map而不是flatMap将返回的数据转换为另一种格式。flatMap如果您需要订阅一个新的可观察对象(例如,使用第一个结果的一部分执行第二个请求),那么它将非常有用。

 return json(.get, recipeURL)
   .map { json -> Recipe in
     guard let recipe = Mapper<Recipe>().map(JSONObject: json) else {
       throw ApiError(message: "ObjectMapper can't mapping", code: 422)
     }
     return recipe
   }

关于swift - Swift 3,RxAlamofire并映射到自定义对象,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40334098/

10-10 20:42