我有一个产品 ID 列表,基于该产品 ID,我想获取产品名称,但由于 catalog_product_entity 表不包含产品名称,所以我被困住了。
请检查我的代码,我试过左右加入,但没有得到名字
$collection = Mage::getModel('catalog/product')->getCollection()
->addAttributeToSelect('name')
->getSelect()->joinRight(
array('table_alias'=>'my_table'),
'entity_id = table_alias.product_id',
array('table_alias.*')
);
$result = null;
foreach ($collection as $temp) {
$result[] = array(
'name' => $temp->getCustomer_name(),
);
}