magento从产品sku获取产品类型

magento从产品sku获取产品类型

本文介绍了magento从产品sku获取产品类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何使用产品sku或id获取产品类型(简单,可配置/分组...),我已经加载了产品集合,并从中尝试通过prict类型

How can i get the product type(simplee,configurable/grouped ...) using product sku or id, i have loaded product collection and from that trying to prict type by

$_product->getTypeId()

但是它不打印产品类型.请帮助我

But its not printing the product type. Please help me

谢谢

推荐答案

我认为$_product->getTypeId()应该可以工作.如果没有,请尝试$_product->getResource()->getTypeId()

I think $_product->getTypeId() should work. If it doesn't then try $_product->getResource()->getTypeId()

这篇关于magento从产品sku获取产品类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 14:16