admin管理员组文章数量:1343311
Most of the toastr demos are client side only.
If I get a server push of this json data
[
{"msg": "Mortgage bill paid", "t": "i"}
{"msg": "Account Balance below $3000", "t": "i"}
{"msg": "Received Car payment request", "t": "w"}
]
How would I use toastr read through items and publish 'info' for 1 and 2, "warning" for 3, lower right is ok. I would like a delay of 2000 between toasts so the toast dont e at the same time.
Can you point me to example that show something similar. Can toastr do this. Timed messaging in a sense.
Most of the toastr demos are client side only.
If I get a server push of this json data
[
{"msg": "Mortgage bill paid", "t": "i"}
{"msg": "Account Balance below $3000", "t": "i"}
{"msg": "Received Car payment request", "t": "w"}
]
How would I use toastr read through items and publish 'info' for 1 and 2, "warning" for 3, lower right is ok. I would like a delay of 2000 between toasts so the toast dont e at the same time.
Can you point me to example that show something similar. Can toastr do this. Timed messaging in a sense.
Share Improve this question edited Dec 30, 2013 at 4:34 Merlin asked Nov 10, 2013 at 0:22 MerlinMerlin 25.7k44 gold badges140 silver badges213 bronze badges2 Answers
Reset to default 8This is the exact thing you need I guess
setTimeout((function() {
toastr.info('MESSAGE TITLE', 'message content', {options});
}), delay);
toastr.options = {
"closeButton": true,
"debug": false,
"newestOnTop": false,
"progressBar": false,
"positionClass": "toast-top-center",
"preventDuplicates": false,
"onclick": null,
"showDuration": "300",
"hideDuration": "1000",
"timeOut": "5000",
"extendedTimeOut": "1000",
"showEasing": "swing",
"hideEasing": "linear",
"showMethod": "fadeIn",
"hideMethod": "fadeOut"
}
You could loop through the array and call toastr['info'] or toastr['warning'] (map the i to info, for example). FOr delays, you could use a timeout and delay the messages by 2000 ms for each.
timeout(toastr['info']('your message'), 2000);
本文标签: javascriptUsing timeouts with toastrStack Overflow
版权声明:本文标题:javascript - Using timeouts with toastr - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743726863a2528512.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论