我最近开始使用 react-toastify 并且一切正常,直到我注意到这种奇怪的行为。
这是我的代码:
this.adderrorNotification('Error: Please try again!')
adderrorNotification(message){
toast.error(message, {
onClose: () => console.log('called when I close')
});
}
Up on toast onClose 我看到日志消息 4 次。并在手动关闭时单击 toast 重新出现 4 次。
为什么会这样?任何帮助谢谢