我想在ajax调用期间使用noty插件显示消息。 要做到这一点,我必须打开两个noty通知框,一个在beforeSend,一个在成功回调。
$('#insert').on('click', function() {
$.ajax({
type: "POST",
url: action.php,
beforeSend: function() {
callNoty('Waiting...');
},
success: function(data) {
callNoty('Insert ok');
}
});
});
JS
$(function() {
callNoty(text) {
var n = noty({
layout: 'center',
theme: 'relax',
type: 'success',
text: text,
dismissQueue: true, // If you want to use queue feature set this true
template: '<div class="noty_message"><span class="noty_text"></span><div class="noty_close"></div></div>',
animation: {
open: { height: 'toggle' }, // or Animate.css class names like: 'animated bounceInLeft'
close: { height: 'toggle' }, // or Animate.css class names like: 'animated bounceOutLeft'
//easing: 'swing',
speed: 0 // opening & closing animation speed
},
timeout: 3000, // delay for closing event. Set false for sticky notifications
force: false, // adds notification to the beginning of queue when set to true
modal: true,
maxVisible: 2, // you can set max visible notification for dismissQueue true option,
killer: true, // for close all notifications before show
closeWith: ['click', 'hover'], // ['click', 'button', 'hover', 'backdrop'] // backdrop click will close all notifications
callback: {
onShow: function() {},
afterShow: function() {},
onClose: function() {},
afterClose: function() {},
onCloseClick: function() {},
},
buttons: false // an array of buttons
});
};
});
我读到您可以动态编辑文本并输入,我会这样做,以便在beforeSend上打开一个通知框,并在成功回调中更改类型和文本。 我怎么能这样做?谢谢
答案 0 :(得分:0)
我想我对这件事晚了五年,但你可以通过以下方式做到这一点: 您必须将 noty.js 文件链接到根 html 文件夹。 专注于成功和错误处理程序
$.ajax({
url : "/posts/create",
method:"POST",
data: newPostForm.serialize(),
success : function(data){
new Noty({
theme : 'mint' ,
text: "Post Created",
type: 'alert',
layout : "topCenter",
timeout : 1500
}).show();
},
error: function(error){
console.log(error.responseText);
new Noty({
theme : 'mint' ,
text: error.responseText,
type: 'alert',
layout : "topCenter",
timeout : 1500
}).show();
}
});
所以我们只是在aja调用的成功或错误处理函数中调用新的Noty函数,并带有您想要显示的自定义和消息