Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在多商店 magento 后端检索当前选定的商店视图?我在一个 admi 页面(目录-> 管理类别-> 一般信息),我必须检索当前选择的商店/商店 ID。有可能吗?怎么做?
谢谢
有很多选项,但你应该能够使用,
Mage::app()->getRequest()->getParam('store');
如果您不是在寻找特定的 ID,则可以使用
Mage::getModel('core/store')->getCollection()->load()->getAllIds();
分配您自己的变量以与它们一起使用。