西部数码主机 | 阿里云主机| 虚拟主机 | 服务器 | 返回乐道官网
当前位置: 主页 > php教程 > magento教程 >

获取Magento中属性的值,名字和其它信息

时间:2017-01-06 00:36来源:未知 作者:好模板 点击:
Magento产品的属性是一个非常重要的功能,我们经常会用到。在这篇文章中我将总结的一些产品属性信息的输出方法跟大家分享一下。 1、获取属性集合 $attribute = $_product-getResource()-getA

Magento产品的属性是一个非常重要的功能,我们经常会用到。在这篇文章中我将总结的一些产品属性信息的输出方法跟大家分享一下。

1、获取属性集合

$attribute = $_product->getResource()->getAttribute(‘attribute_code’); 

2、获取属性类型

$attribute->getAttributeType(); 

3、获取属性Label

 $attribute->getFrontendLabel(); 

4、获取属性默认值

$attribute->getDefaultValue(); 

5、获取属性设置值

$attribute->getFrontend()->getValue($_product); 

6、检查属性是否可见

$attribute->getIsVisible(); 

7、检查属性是否是必填项

$attribute->getIsRequired();
(责任编辑:好模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------