我正在使用 angular2-toaster,并试图理解为什么 2 个带有不同消息的 toast 被认为是“重复”的 toast,因此只出现了 1 个 toast。我希望两个祝酒词都出现。
我有这个代码:
var toast: Toast = {
type: 'error',
title: "one toast, from one dev to another",
};
var toast2: Toast = {
type: 'error',
title: "another toast, yo!",
};
this.toasterService.pop(toast);
this.toasterService.pop(toast2);
在一个单独的文件中,我有这个烤面包机配置:
this.config = new ToasterConfig({
positionClass: "toast-top-center",
timeout: 10000,
newestOnTop: true,
tapToDismiss: true,
preventDuplicates: true,
animation: "fade",
limit: 3,
});
除了类型之外,这些吐司是“重复的”怎么办?