在Angular 2.0.0-alpha.47中,Observable
从调用返回的 formInput.valueChanges()
函数具有所有高阶函数,即我可以做这样的事情;
this.search.valueChanges .debounceTime(150) .map(x=>return x+1) .switchMap(text => this.youtube.search(text));
我现在使用2.0.0-beta.0并且Observable
返回的this.search.valueChanges()
不再具有所有方法.我只能订阅.我不能再调用map(),filter()等.
有谁知道这是否是表单输入的预期行为?
像这样导入Rxjs:
Import * as Rx from "rxjs/Rx";
运营商将可用.
当您使用Observable类时,请使用Rx作为前缀.(Rx.Observable)