23

我有一个变量,它是一个枚举值数组。这些值随时间而变化。

enum Option {
    case One
    case Two
    case Three
}

let options = Variable<[Option]>([ .One, .Two, .Three ])

然后我观察这个变量的变化。问题是,我需要知道最新值和以前值之间的差异。我目前正在这样做:

let previousOptions: [Option] = [ .One, .Two, .Three ]

...

options
    .asObservable()
    .subscribeNext { [unowned self] opts in
        // Do some work diff'ing previousOptions and opt
        // ....
        self.previousOptions = opts
    }

RxSwift 有内置的东西可以更好地管理这个吗?有没有办法总是从信号中获取先前和当前的值?

4

7 回答 7

34

这是一个方便的通用扩展,它应该涵盖这些“我想要以前的和当前的值”用例:

extension ObservableType {

    func withPrevious(startWith first: E) -> Observable<(E, E)> {
        return scan((first, first)) { ($0.1, $1) }.skip(1)
    }
}
于 2017-05-29T13:16:48.420 回答
18

你去吧

options.asObservable()
    .scan( [ [],[] ] ) { seed, newValue in
        return [ seed[1], newValue ]
    }
    // optional, working with tuple of array is better than array of array
    .map { array in (array[0], array[1])  } 
    //optional, in case you dont want empty array
    .skipWhile { $0.count == 0 && $1.count == 0 }

它会返回Observable<([Options], [Options])>:)

于 2016-03-17T02:51:57.770 回答
12

作为扩展的另一种方式

extension ObservableType {

  func withPrevious() -> Observable<(E?, E)> {
    return scan([], accumulator: { (previous, current) in
        Array(previous + [current]).suffix(2)
      })
      .map({ (arr) -> (previous: E?, current: E) in
        (arr.count > 1 ? arr.first : nil, arr.last!)
      })
  }
}

用法:

someValue
  .withPrevious()
  .subscribe(onNext: { (previous, current) in
    if let previous = previous { // previous is optional
      print("previous: \(previous)")
    }
    print("current: \(current)")
  })
  .disposed(by: disposeBag)
于 2018-12-06T23:42:11.170 回答
11

正如 Pham Hoan 所说,scan(_)这是完成这项工作的正确工具。Marin Todorov 写了一篇关于这样做的好文章。

这是我根据 Marin 的帖子得出的结论:

options
        .asObservable()
        .scan([]) {
            (previous, current) in
                return Array(previous + [current]).suffix(2)
        }
        .subscribeNext {
            (lastTwoOptions) in
                let previousOptions = lastTwoOptions.first
                let currentOptions = lastTwoOptions.last
                // Do your thing.  Remember to check for nil the first time around!
        }
        .addDisposableTo(self.disposeBag)

希望有帮助

于 2016-06-07T16:44:15.600 回答
6

.pairwise()操作员完全按照您的意愿进行操作,并且是最简单的方法。该运算符将成对的连续发射组合在一起,并将它们作为两个值的数组发射。

见:http ://reactivex.io/rxjs/class/es6/Observable.js~Observable.html#instance-method-pairwise

https://rxjs-dev.firebaseapp.com/api/operators/pairwise


更新:正如@courteouselk 在他的评论中指出的那样,我没有注意到这是一个 RxSwift 问题,我的回答引用了一个 RxJS 解决方案(哎呀!)。

原来 RxSwift 没有内置操作pairwise符,但RxSwiftExt提供了类似于内置 RxJS 操作符的成对扩展操作符。

于 2018-06-28T21:51:59.297 回答
3

一行中的最佳解决方案:

Observable.zip(options, options.skip(1))
于 2018-05-17T07:33:16.863 回答
2

我会建议这样的事情(对于未来的访客):

options.asObservable()
       .map { (old: [], new: $0) }   // change type from array to tuple
       .scan((old: [], new: [])) { previous, current in
           // seed with an empty tuple & return both information
           return (old: previous.new, new: current.new)
       }
       .subscribe(onNext: { option in
           let oldArray = option.old   // old
           let newArray = option.new   // new
       }
       .addDisposableTo(disposeBag)
于 2017-06-03T03:23:05.117 回答