Внедрить данные из сервиса в компонент - PullRequest
0 голосов
/ 27 ноября 2018

В настоящее время я использую Rx.JS и Angular 7. Моя проблема связана с проблемой в Observable.

Проблема в том, что я не могу получить данные из службы в form-code.component .

После того, как я использовал setShortCode () есть набор данных, но в form-code.component.ts я не вижу seebscribe () данные

shortcode.service.ts

import { Injectable, NgZone } from '@angular/core';
import { Subject, Observable } from 'rxjs';

@Injectable({
  providedIn: 'root'
})
export class ShortcodeService {
  public shortcode = new Subject<any>();
  constructor(private zone: NgZone) {}

  setShortCode(code) {
    this.zone.run(() => {
      this.shortcode.next(code);
    });
  }

  getShortCode(): Observable<any> {
    return this.shortcode.asObservable();
  }
}

dnd.component.ts

this.textAreaText = `<iframe src="${window.location.origin +
          '/form/' +
          project.id}/design" width="100%" height="500px" frameborder="0"></iframe>`;
        this.shortCodeService.setShortCode(this.textAreaText);
        this.router.navigate(['/form-copy']);

form-code.components.ts

import { Component, OnInit, OnDestroy, AfterViewInit } from '@angular/core';
import { ShortcodeService } from '../../services/shortcode.service';
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
import { Subscription } from 'rxjs';

@Component({
  selector: 'app-form-code',
  templateUrl: './form-code.component.html',
  styleUrls: ['./form-code.component.scss']
})
export class FormCodeComponent implements OnInit, OnDestroy {
  constructor(
    private sanitizer: DomSanitizer,
    private shortCodeService: ShortcodeService
  ) {}
  shortText: string;
  sub: Subscription;
  ngOnInit() {
    this.sub = this.shortCodeService.getShortCode().subscribe(
      shortcode => {
        console.log(shortcode);
        this.shortText = shortcode;
      },
      error => console.log(error),
      () => {}
    );
  }

  ngOnDestroy(): void {
    //Called once, before the instance is destroyed.
    //Add 'implements OnDestroy' to the class.
    this.sub.unsubscribe();
  }
}

1 Ответ

0 голосов
/ 08 декабря 2018

Работает, когда я изменил Subject на BehaviorSubject

...