我只是想在 Magento 中查看购物车的内容

发布于 2024-10-02 11:42:41 字数 159 浏览 1 评论 0原文

当您在 Magento 中查看购物车的内容时,我有一个观察者运行。我只是想 var_dump 产品 ID 列表。

我知道这可能看起来是一个愚蠢的问题,但我无法弄清楚,它将帮助我了解 Magento 的工作原理。

预先感谢

  • 亚历克斯

I have an observer that is ran when you view the contents of the shopping cart in Magento. I simply want to var_dump the list of product ID's.

I know it probably seems like a dumb question but I can't figure it out and it will help me work out how Magento works.

Thanks in advance

  • Alex

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

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

发布评论

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

评论(4

◇流星雨 2024-10-09 11:42:41

尝试在 var_dump 之后添加 die();,它应该停止执行,并且您应该看到 vardump 的内容。

Try adding a die(); after your var_dump, it should stop execution, and you should see the content of the vardump.

毅然前行 2024-10-09 11:42:41

启用日志记录:系统>配置>>高级>开发商>日志设置(确保 var 目录可被 Web 服务器写入)
使用:

Mage::log($variable);

您可以在Magento中的任何地方使用此方法,例如模型、块、控制器等
您可以在 magento_dir/var/log/system.log 中找到记录的消息

Enable logging: system > configuration > advanced > developer > log settings (make sure the var directory is writable by the web server)
Use:

Mage::log($variable);

You can use this method anywhere in Magento, e.g. model, block, controller etc
You can find the logged message in magento_dir/var/log/system.log

甜扑 2024-10-09 11:42:41

在没有调试器的情况下探索 Magento 是一项艰巨的任务。尝试找一些时间来设置 XDebug - 它会对您有所帮助。

Exploring Magento without debugger is a hard task. Try to find some time to set up XDebug - it will help you.

逆蝶 2024-10-09 11:42:41

Magento 中的每个事件都有其自己的特定数据。

您需要提供正在观察的事件,以便人们可以帮助您找到产品的 id。

Each event in Magento has its own specific data attached to it.

You need to provide event being observed, so that people can help you to find out ids of products.

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