1
APIコールを呼び出してオブザーバブルを返すangular2サービスがありますが、RXJSはEXCEPTION:Rxが定義されていないというエラーを返しています。何をインポートする必要がありますか?もちろん、フォルダ全体をインポートする必要はありませんか?RXJS - 例外:Rxが定義されていません。2
!---輸入
import 'rxjs/add/observable/from';
import 'rxjs/add/operator/map';
!---サービスコード
const server = 'http://api.myserver.com';
return (dispatch) => {
dispatch(this.requestJson());
let s = this._http.get(`${server}`);
s.flatMap(s => {
let theRes = JSON.parse(s._body);
return Rx.Observable.from(theRes); <--- happens right here
}).filter(function(data) {
console.log('all array ' + data);
return true;
}).subscribe(function (v) {
console.log(v);
});