在我的块代码中,我尝试以编程方式检索具有特定值属性的产品列表。
或者,如果不可能,那么如何检索所有产品然后过滤它们以仅列出具有特定属性的产品?
如何使用标准布尔过滤器AND
或OR
执行搜索以匹配我的产品子集?
答案 0 :(得分:160)
几乎所有Magento模型都有一个相应的Collection对象,可用于获取模型的多个实例。
要实例化Product集合,请执行以下操作
$collection = Mage::getModel('catalog/product')->getCollection();
产品是Magento EAV样式模型,因此您需要添加要返回的任何其他属性。
$collection = Mage::getModel('catalog/product')->getCollection();
//fetch name and orig_price into data
$collection->addAttributeToSelect('name');
$collection->addAttributeToSelect('orig_price');
有多种语法可用于在集合上设置过滤器。我总是使用下面的详细信息,但您可能需要检查Magento源以获取可以使用过滤方法的其他方法。
以下显示了如何按一系列值(大于AND小于)
进行过滤$collection = Mage::getModel('catalog/product')->getCollection();
$collection->addAttributeToSelect('name');
$collection->addAttributeToSelect('orig_price');
//filter for products whose orig_price is greater than (gt) 100
$collection->addFieldToFilter(array(
array('attribute'=>'orig_price','gt'=>'100'),
));
//AND filter for products whose orig_price is less than (lt) 130
$collection->addFieldToFilter(array(
array('attribute'=>'orig_price','lt'=>'130'),
));
虽然这将按名称等于一件事或另一件事来过滤。
$collection = Mage::getModel('catalog/product')->getCollection();
$collection->addAttributeToSelect('name');
$collection->addAttributeToSelect('orig_price');
//filter for products who name is equal (eq) to Widget A, or equal (eq) to Widget B
$collection->addFieldToFilter(array(
array('attribute'=>'name','eq'=>'Widget A'),
array('attribute'=>'name','eq'=>'Widget B'),
));
可以在_getConditionSql
lib/Varien/Data/Collection/Db.php
方法中找到支持的短条件(eq,lt等)的完整列表
最后,可以迭代所有Magento集合(基本集合类在迭代器接口上实现)。这是您在设置过滤器后抓取产品的方式。
$collection = Mage::getModel('catalog/product')->getCollection();
$collection->addAttributeToSelect('name');
$collection->addAttributeToSelect('orig_price');
//filter for products who name is equal (eq) to Widget A, or equal (eq) to Widget B
$collection->addFieldToFilter(array(
array('attribute'=>'name','eq'=>'Widget A'),
array('attribute'=>'name','eq'=>'Widget B'),
));
foreach ($collection as $product) {
//var_dump($product);
var_dump($product->getData());
}
答案 1 :(得分:7)
这是我原来问题的一个跟进,以帮助其他人解决同样的问题。如果需要按属性进行过滤,而不是手动查找id,则可以使用以下代码检索属性的所有id,value对。数据作为数组返回,属性名称为键。
function getAttributeOptions($attributeName) {
$product = Mage::getModel('catalog/product');
$collection = Mage::getResourceModel('eav/entity_attribute_collection')
->setEntityTypeFilter($product->getResource()->getTypeId())
->addFieldToFilter('attribute_code', $attributeName);
$_attribute = $collection->getFirstItem()->setEntity($product->getResource());
$attribute_options = $_attribute->getSource()->getAllOptions(false);
foreach($attribute_options as $val) {
$attrList[$val['label']] = $val['value'];
}
return $attrList;
}
以下是一个可用于按产品属性ID获取产品的功能。使用上一个功能检索。
function getProductsByAttributeSetId($attributeSetId) {
$products = Mage::getModel('catalog/product')->getCollection();
$products->addAttributeToFilter('attribute_set_id',$attributeSetId);
$products->addAttributeToSelect('*');
$products->load();
foreach($products as $val) {
$productsArray[] = $val->getData();
}
return $productsArray;
}
答案 2 :(得分:5)
$attribute = Mage::getModel('eav/entity_attribute')
->loadByCode('catalog_product', 'manufacturer');
$valuesCollection = Mage::getResourceModel('eav/entity_attribute_option_collection')
->setAttributeFilter($attribute->getData('attribute_id'))
->setStoreFilter(0, false);
$preparedManufacturers = array();
foreach($valuesCollection as $value) {
$preparedManufacturers[$value->getOptionId()] = $value->getValue();
}
if (count($preparedManufacturers)) {
echo "<h2>Manufacturers</h2><ul>";
foreach($preparedManufacturers as $optionId => $value) {
$products = Mage::getModel('catalog/product')->getCollection();
$products->addAttributeToSelect('manufacturer');
$products->addFieldToFilter(array(
array('attribute'=>'manufacturer', 'eq'=> $optionId,
));
echo "<li>" . $value . " - (" . $optionId . ") - (Products: ".count($products).")</li>";
}
echo "</ul>";
}
答案 3 :(得分:3)
在产品详情页面上获取从admin添加到TEXT
属性的前端。
感谢Anita Mourya
我发现有两种方法。假设名为“na_author”的产品属性从后端添加为文本字段。
方法1
on list.phtml
<?php $i=0; foreach ($_productCollection as $_product): ?>
对于每个产品负载SKU并获得内部属性
<?php
$product = Mage::getModel('catalog/product')->loadByAttribute('sku',$_product->getSku());
$author = $product['na_author'];
?>
<?php
if($author!=""){echo "<br /><span class='home_book_author'>By ".$author ."</span>";} else{echo "";}
?>
方法2
Mage/Catalog/Block/Product/List.phtml
OVER RIDE并设置在“本地文件夹”
即。 复制自
Mage/Catalog/Block/Product/List.phtml
和PASTE TO
app/code/local/Mage/Catalog/Block/Product/List.phtml
通过添加下面粗体显示的2行来更改功能。
protected function _getProductCollection()
{
if (is_null($this->_productCollection)) {
$layer = Mage::getSingleton('catalog/layer');
/* @var $layer Mage_Catalog_Model_Layer */
if ($this->getShowRootCategory()) {
$this->setCategoryId(Mage::app()->getStore()->getRootCategoryId());
}
// if this is a product view page
if (Mage::registry('product')) {
// get collection of categories this product is associated with
$categories = Mage::registry('product')->getCategoryCollection()
->setPage(1, 1)
->load();
// if the product is associated with any category
if ($categories->count()) {
// show products from this category
$this->setCategoryId(current($categories->getIterator()));
}
}
$origCategory = null;
if ($this->getCategoryId()) {
$category = Mage::getModel('catalog/category')->load($this->getCategoryId());
if ($category->getId()) {
$origCategory = $layer->getCurrentCategory();
$layer->setCurrentCategory($category);
}
}
$this->_productCollection = $layer->getProductCollection();
$this->prepareSortableFieldsByCategory($layer->getCurrentCategory());
if ($origCategory) {
$layer->setCurrentCategory($origCategory);
}
}
**//CMI-PK added na_author to filter on product listing page//
$this->_productCollection->addAttributeToSelect('na_author');**
return $this->_productCollection;
}
你会很高兴看到它...... !!
答案 4 :(得分:2)
创建属性名称为“<?php $_product = $this->getProduct(); ?>
<?php echo $_product->getData('price_screen_tab_name');?>
”。并使用这个简单的公式进行访问。
'([^']*)'
答案 5 :(得分:0)
我添加了行
$this->_productCollection->addAttributeToSelect('releasedate');
in
app / code / core / Mage / Catalog / Block / Product / List.php on line 95
在函数_getProductCollection()
然后在
中调用它应用程序/设计/前端/默认/ hellopress /模板/目录/产品/ list.phtml
编写代码
<div><?php echo $this->__('Release Date: %s', $this->dateFormat($_product->getReleasedate())) ?>
</div>
现在它正在使用Magento 1.4.x