我正在做一个magento项目,我需要根据国家/地区来获取值,例如选择地址,其中country ="Nepal"
我们可以在getCollection()函数中发送where条件吗

$collection = Mage::getModel('relocator/location')->getCollection();

任何帮助将不胜感激

最佳答案

得到了解决方案
; P

Mage::getModel('relocator/location')
    ->getCollection()
    ->addFilter('country','Nepal');

10-06 10:44