无法在角度使用noty

时间:2019-06-25 14:47:35

标签: angular noty

我已经使用Noty创建了一个通知服务,但是它没有动画或不能正确显示。我在哪里失踪?我需要为其添加任何脚本吗?

import { Injectable } from '@angular/core';
declare let require;
const lodash = require('lodash');
const Noty = require('noty');

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

  constructor() { }

  showNotification(text){
    new Noty(lodash.assign({
      text:text,
      type: 'success',
      layout: 'topRight',
      killer:true,
      timeout: 3000,
    })).show();
  }
}

这是服务的代码。

0 个答案:

没有答案