从自定义表magento获取当前产品的数据

时间:2014-03-25 12:10:22

标签: magento

我已经创建了自定义表格和模型,我可以使用此代码访问此模型的所有数据

$model = Mage::getModel('groupprice/groupprice');
$data = $model->getCollection()->getData();
print_r($data);

我只想过滤当前产品的数据,产品定制表中的外键是product_id。

我怎么能做到这一点?

1 个答案:

答案 0 :(得分:4)

试试这个:

$productId = 1;//change to your product id
$collection = Mage::getModel('groupprice/groupprice')->getCollection()
    ->addFieldToFilter('product_id', $productId);
foreach ($collection as $item) {
    //do something with $item
    //for example print_r($item) to see all it's data
}