标签: reactive
将“ d”值带入下一个调用的最佳方法是什么?
return rxDataService.queryMany(criteria) .flatMapIterable(d -> { return d.getSelectors(); }) .map(s -> { return new SelectorInfo(null, s);});
我基本上想在SelectorInfo()中为空的地方使用'd'。