Angular 7 Singleton Service для связи между двумя компонентами - PullRequest
0 голосов
/ 30 января 2019

У меня есть два компонента и сервис.Я хочу использовать сервис для хранения общей стоимости.StripeComponent устанавливает значение в сервисе.Я получаю следующую ошибку:

Невозможно прочитать свойство 'setAddress' из неопределенного

Вот мой компонент:

import { Component, ViewChild, OnInit } from '@angular/core'
import { NgForm } from '@angular/forms'

import { Address } from '../_models/address'
import { Observable } from 'rxjs';
import { ConfigService } from '../_services/config.service';

declare var Stripe;
@Component({
  selector: 'app-stripe',
  templateUrl: './stripe.component.html',
  styleUrls: ['./stripe.component.css'],
  providers: [ConfigService]
})
export class StripeComponent implements OnInit {
  public address = 
    new Address(
  {
    name:"",
    address_city: "",
    address_line1: "",
    address_line2: "",
    address_state: "",
    address_zip: "",
    address_country: ""
  }
)
configService: ConfigService 

  constructor() {         
   }

  ngOnInit(){
  // create observable address$
    this.address$.subscribe( (address: Address) => { 
    console.log(address); }) ;

      this.configService.setAddress(this.address); <-- error here

  } 

}

Вот мой сервис:

import { Injectable } from '@angular/core'
import { Address }from '../_models/address';

@Injectable({
  providedIn: 'root'
})
export class ConfigService {

  constructor() { }

  private config : Address;
  // set the address from stripe component
    setAddress(value) {
      this.config = value;
    }

  public getAddress() {
          return this.config;
  }

}

Ответы [ 2 ]

0 голосов
/ 30 января 2019

Поскольку вы объявили свой ConfigService как "инъецируемый" (@Injectable), вы должны ввести в свой конструктор:

constructor(private configService: ConfigService) {}
0 голосов
/ 30 января 2019

Вам нужно внедрить ConfigService в конструктор StripeComponent например

export class StripeComponent implements OnInit {
    constructor(private configService: ConfigService) {}
}

Как использовать сервисы создания и потребления в Angular

...