除了使用集合时,是否有任何情况需要Magento开发人员使用Mage::getResourceModel()
?
我现在已经在Magento开发了一段时间,并且还没有遇到我需要自己使用Mage::getResourceModel()
的情况。
答案 0 :(得分:2)
当您使用不属于标准CRUD模式的模型/资源模型对时,您希望直接调用资源模型的公共方法。
代码库中的一些例子(在我的脑海中)
Mage/Admin/Model/Session.php
100: $this->setAcl(Mage::getResourceModel('admin/acl')->loadAcl());
138: $this->setAcl(Mage::getResourceModel('admin/acl')->loadAcl());
Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main.php
179: $configurable = Mage::getResourceModel('catalog/product_type_configurable_attribute')
191: $nodeChildren = Mage::getResourceModel('catalog/product_attribute_collection')
233: $collection = Mage::getResourceModel('catalog/product_attribute_collection')
243: $attributes = Mage::getResourceModel('catalog/product_attribute_collection')
答案 1 :(得分:0)
当你只想获得一个资源模型实例时,你应该使用getResourceModel
(这也是集合的某种优化,但是集合是资源模型真的很愚蠢)。例如,要获取资源模型,您可以使用:
Mage::getModel('my_module/path_to_resource_model');
此代码创建名为My_Module_Model_Path_To_Resource_Model
的模型。但这不是一个好的解决方案,因为您可以在config.xml中指定资源模型类前缀(例如在Mage_Cms中):
............................................
<models>
<cms>
<class>Mage_Cms_Model</class>
<resourceModel>cms_mysql4</resourceModel>
</cms>
<cms_mysql4>
<!-- ----> --> <class>Mage_Cms_Model_Mysql</class>
............................................
但是当您使用Mage::getResourceModel
时,系统会读取资源模型类前缀(您将来可以更改它)。因此,第一个代码段可能会被重写为:
Mage::getResourceModel('my_module/model');