我只是想在 Magento 中查看购物车的内容
当您在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试在 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.启用日志记录:系统>配置>>高级>开发商>日志设置(确保 var 目录可被 Web 服务器写入)
使用:
您可以在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:
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
在没有调试器的情况下探索 Magento 是一项艰巨的任务。尝试找一些时间来设置 XDebug - 它会对您有所帮助。
Exploring Magento without debugger is a hard task. Try to find some time to set up XDebug - it will help you.
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.