我使用 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();
}
}
这是服务的代码。