web-dev-qa-db-ja.com

Angularのhttpのような静的データからObservableを作成する方法

私はこのメソッドを持っているサービスを持っています:

export class TestModelService {

    public testModel: TestModel;

    constructor( @Inject(Http) public http: Http) {
    }

    public fetchModel(uuid: string = undefined): Observable<string> {
        if(!uuid) {
            //return Observable of JSON.stringify(new TestModel());
        }
        else {
            return this.http.get("http://localhost:8080/myapp/api/model/" + uuid)
                .map(res => res.text());
        }
    }
}

私が購読しているコンポーネントのコンストラクタでは、次のようになります。

export class MyComponent {
   testModel: TestModel;
   testModelService: TestModelService;

   constructor(@Inject(TestModelService) testModelService) {
      this.testModelService = testModelService;

      testService.fetchModel("29f4fddc-155a-4f26-9db6-5a431ecd5d44").subscribe(
          data => { this.testModel = FactModel.fromJson(JSON.parse(data)); },
          err => console.log(err)
      );
   }
}

これはオブジェクトがサーバから来ている場合にはうまくいきますが、静的な文字列に対して与えられたsubscribe()呼び出しでうまく動くオブザーバブルを作成しようとしています(これはtestModelService.fetchModel()がuuidを受け取らない場合に起こります)。

85

おそらく、ofクラスの Observable メソッドを試してみることもできます。

import { Observable } from 'rxjs/Observable';
import 'rxjs/add/observable/of';

public fetchModel(uuid: string = undefined): Observable<string> {
  if(!uuid) {
    return Observable.of(new TestModel()).map(o => JSON.stringify(o));
  }
  else {
    return this.http.get("http://localhost:8080/myapp/api/model/" + uuid)
            .map(res => res.text());
  }
}
123

2018年7月およびRxJS 6のリリース時点で、値からObservableを取得する新しい方法は、次のようにof演算子をインポートすることです。

import { of } from 'rxjs';

それから、その値から観測量を作成します。

of(someValue);

現在受け入れられている答えのようにObservable.of(someValue)をしなければならなかったことに注意してください。他のRxJS 6の変更についての良い記事があります ここ

32
VSO

Angular 2.0.0以降、状況が変わったようです

import { Observable } from 'rxjs/Observable';
import { Subscriber } from 'rxjs/Subscriber';
// ...
public fetchModel(uuid: string = undefined): Observable<string> {
  if(!uuid) {
    return new Observable<TestModel>((subscriber: Subscriber<TestModel>) => subscriber.next(new TestModel())).map(o => JSON.stringify(o));
  }
  else {
    return this.http.get("http://localhost:8080/myapp/api/model/" + uuid)
            .map(res => res.text());
  }
}

.next()関数はあなたのサブスクライバーで呼ばれます。

17
Niel de Wet

これが静的データ用の簡単な観測量を作成する方法です。

let observable = Observable.create(observer => {
  setTimeout(() => {
    let users = [
      {username:"balwant.padwal",city:"pune"},
      {username:"test",city:"mumbai"}]

    observer.next(users); // This method same as resolve() method from Angular 1
    console.log("am done");
    observer.complete();//to show we are done with our processing
    // observer.error(new Error("error message"));
  }, 2000);

})

to subscribe to it is very easy

observable.subscribe((data)=>{
  console.log(data); // users array display
});

この答えが参考になったと思います。静的データの代わりにHTTP呼び出しを使用できます。

9
Balwant Padwal

この方法で、データからObservableを作成できます。私の場合、ショッピングカートを管理する必要があります。

service.ts

export class OrderService {
    cartItems: BehaviorSubject<Array<any>> = new BehaviorSubject([]);
    cartItems$ = this.cartItems.asObservable();

    // I need to maintain cart, so add items in cart

    addCartData(data) {
        const currentValue = this.cartItems.value; // get current items in cart
        const updatedValue = [...currentValue, data]; // Push new item in cart

        if(updatedValue.length) {
          this.cartItems.next(updatedValue); // notify to all subscribers
        }
      }
}

Component.ts

export class CartViewComponent implements OnInit {
    cartProductList: any = [];
    constructor(
        private order: OrderService
    ) { }

    ngOnInit() {
        this.order.cartItems$.subscribe(items => {
            this.cartProductList = items;
        });
    }
}
1
Rahul Dadhich