我正在尝试使用Magento中的PHP代码在主页上显示推荐书
我已经使用getCollection或没有getCollection函数
尝试了下面的代码$collection = Mage::getModel('turnkeye/testimonial');
我可以调用正确的模型吗?
答案 0 :(得分:1)
模块初始化代码应为turnkeye_testimonial/testimonial
而不是turnkeye/testimonial
如果您想要按单个项目进行字段,则可以通过primary key of testimonial
表执行此操作
$collection $model = Mage::getModel('turnkeye_testimonial/testimonial')>load(id);
如果你想获取多个项目,那么你需要资源收集
Mage::getResourceModel('turnkeye_testimonial/testimonial')->addFieldToSelect('*');
或
$collection = Mage::getModel('turnkeye_testimonial/testimonial')->getCollection();
有 随机收藏
$collection=Mage::getModel('turnkeye_testimonial/testimonial')->getCollection();
$collection->getSelect()->order('rand()');
一些参考
http://www.amitbera.com/create-an-magento-extension-with-custom-database-table/