используя ng2-toastr {ToastsManager} в Angular6 - PullRequest
0 голосов
/ 05 октября 2018

Не удалось скомпилировать.

. / Node_modules / ng2-toastr / src / toast-manager.js Модуль не найден: Ошибка: не удается разрешить 'rxjs / Subject' в '/ Users/ siva / Desktop / Angular / chatApp / node_modules / ng2-toastr / src '

Я использую ng2-toastr в угловой версии 6.когда я запускаю приложение, на странице появляется сообщение об ошибке выше, и я импортировал все правильно объявленные

Это код

import { Component, OnInit , ViewContainerRef } from '@angular/core';
import { AppService } from './../../app.service';
import { Routes, Router } from '@angular/router';
import { ToastsManager } from 'ng2-toastr/ng2-toastr';

@Component({
  selector: 'app-signup',
  templateUrl: './signup.component.html',
  styleUrls: ['./signup.component.css']
})
export class SignupComponent implements OnInit {

  public firstName: any;
  public lastName: any;
  public mobile: any;
  public email: any;
  public password: any;
  public apiKey: any;



  constructor(
    public appService: AppService,
    public router: Router,
    private toastr: ToastsManager,
    vcr: ViewContainerRef
  ) { }

1 Ответ

0 голосов
/ 26 октября 2018

Вы должны заменить ng2-toastr на ngx-toastr

Здесь представлены шаги https://www.youtube.com/watch?v=YfSvMzUK8BI

Вы можете пропустить начало и начать с 7 мин

...