Magento:如何在管理面板中使用 JS 显示标准错误/成功消息?

发布于 2024-11-08 14:37:45 字数 220 浏览 0 评论 0原文

例如,我可以从服务器端向 Magento 管理面板添加错误/成功消息,

Mage::getSingleton(’core/session’)->addError('***');

但是如何使用 JS 在客户端显示相同的消息?我的意思是标准方式(当然我可以创建相同的消息框,但这不是解决方案)。例如,当我需要显示某些 AJAX 请求的状态时。有什么想法吗?

I can add error/success message to the Magento admin panel from server-side, for example,

Mage::getSingleton(’core/session’)->addError('***');

But how to show the same message on the client-side using JS? I mean standard way (of course I can create the same message box, but it's not a solution). For example when I need to show a status of some AJAX request. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难理解 2024-11-15 14:37:45
function showMessage(txt, type) {
    var html = '<ul class="messages"><li class="'+type+'-msg"><ul><li>' + txt + '</li></ul></li></ul>';
    $('messages').update(html);
}

类型可以是“错误”、“成功”、“通知”或“警告”。享受!

function showMessage(txt, type) {
    var html = '<ul class="messages"><li class="'+type+'-msg"><ul><li>' + txt + '</li></ul></li></ul>';
    $('messages').update(html);
}

The type could be 'error', 'success', 'notice' or 'warning'. Enjoy!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文