我正在尝试在用户成功删除模块记录时显示noty通知。问题是用户能够删除模块记录,但是没有显示通知告诉用户他们已成功删除模块记录。这是我的代码
new Noty({
text: "successfully deleted module!!", type: 'success',
layout: 'center',
template: '<div class="noty_message" style="height:50px;"><span class="noty_text"></span>',
buttons: [
{
addClass: 'btn btn-primary', text: 'Ok', onClick: function ($noty) {
$noty.close();
$('body').fadeOut(2000, redirectPage);
}
}
]
});//end of noty
function redirectPage() {
location.replace('/Modules/Index');
}