码迷,mamicode.com
首页 > 其他好文 > 详细

magento 获取自定义产品属性和属性值

时间:2016-05-12 13:49:59      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:

在magento系统中经常要自定义自己的产品属性,在后台自定义的产品属性如何获取呢,下面根据属性类型的不同分别说明

产品属性要想在前台获取到需要设置属性的Used in Product Listing 为true


1、下拉列表的产品属性

如定义了一个表示产品的硬件支持类型的下拉列表属性support_hardware就可以这样获取

[php] view plain copy
  1. $attributes[‘support_hardware‘]=$product->getAttributeText(‘support_hardware‘);  

2、文本类型的产品属性

如定义了一个属性叫

[php] view plain copy
  1. $attributes[‘version_number‘]=$product->getData(‘version_number‘);  


当得到产品对象后我们可以获取产品的各种属性,如果我们要获取满足一定属性条件的产品集呢?这时候就需要根据产品属性对产品过滤了

magento提供的根据属性过滤的接口有两种,一种是addAttributeToFilter,另一种是直接操作数据库通过getSelect()->where()的方法

1、addAttributeToFilter接口

比如我们想要获取APP产品支持的系统版本(属性name是system_version)在4.2以上的的产品集,就可以这么做

[php] view plain copy
  1. $_productCollection = Mage::getResourceModel(‘catalog/product_collection‘)  
  2.                         ->setStoreId(1)  
  3.                         ->addAttributeToSelect(‘*‘)  
  4.                 ->addAttributeToFilter(‘system_version‘,array(‘gteq‘=><span style="color:#ff6666;">45</span>));<span style="color:#3366ff;">//45这个值是怎么得到的呢,这个值是system_version为4.2时对应的属性值,关于怎么获取属性的值在后面会讲</span>  


2、通过getSelect()->where()直接操作数据库

通过这种方式要求对数据库结构属性,通常我们会用

[php] view plain copy
  1. $_productCollection->getSelectSql()  
来帮助我们写sql语句
[php] view plain copy
  1. $_productCollection->getSelect()->where(‘age‘,array(‘gteq‘=>45));  

怎么通过where写复杂的查询数据库语句会在另一篇中讲解


获取产品后通常还要加上对产品做产品是否是激活,是否在当前商店的判断

[php] view plain copy
  1. $product->isSalable()  

下面讲下怎么获去属性的值

1、假设我们知道attribute的ID为149,就可以这样获取属性的value和label

[php] view plain copy
  1. $attributeOption=Mage::getResourceModel(‘eav/entity_attribute_option_collection‘)  
  2.                                     ->setPositionOrder(‘asc‘)  
  3.                                     ->setAttributeFilter(149)  
  4.                                     ->setStoreFilter()  
  5.                                     ->load();  
  6.         $attributeOptionArray=$attributeOption->toOptionArray();  
  7.     echo "<hr>";  
  8.     print_r($attributeOptionArray);  

2、怎么根据attribute的name来得到attribute对象还在研究中


在实际应用时通常要获取可用来过滤产品的的属性,也就是filterable attributes,获取的方法如下:

[php] view plain copy
  1. protected function _getFilterableAttributes(){  
  2.         $layer = Mage::getModel("catalog/layer");  
  3.         $rootCategory=Mage::getModel(‘catalog/category‘)->load(Mage::app()->getStore()->getRootCategoryId());  
  4.         $layer->setCurrentCategory($rootCategory);  
  5.         $attributes = $layer->getFilterableAttributes();  
  6.         $this->_filterableAttributesExists=array();  
  7.         foreach ($attributes as $attribute) {  
  8.             //echo   $attribute->getAttributeCode(),"---",$attribute->getId(),"</br>";  
  9.             $this->_filterableAttributes[$attribute->getAttributeCode()]=$attribute->getId();  
  10.         }  
  11.         krsort($this->_filterableAttributes);  
  12.         return $this->_filterableAttributes;  
  13.     }  

magento 获取自定义产品属性和属性值

标签:

原文地址:http://blog.csdn.net/fuyifa/article/details/51360140

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!