请阅读有关distinctUntilChanged()的文档。http://reactivex.io/documentation/operators/distinct.html
我猜下面的代码是这个问题的答案。(仅添加了1行)
var checkJobsRx = new Rx.Subject(); checkJobsRx .dosomethinghere() .distinctUntilChanged(function(job) { return job.updated_at }) .subscribe(function (data) {})