首页 > 代码库 > magento中取不同store中的产品数据

magento中取不同store中的产品数据

$products = Mage::getResourceModel(‘catalog/product_collection‘)
                    ->setStoreId($storeId)
                    ->addStoreFilter($storeId)
                    ->addAttributeToSelect(‘*‘)
                    ->addAttributeToFilter(‘entity_id‘, $productId);