- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Fatal error: Call to undefined method Desbest_Showdown_Model_Mysql4_Votes_Collection::addAttributeToSelect() in /home/desbest/public_html/clients/magentofull/app/code/local/Desbest/Showdown/controllers/IndexController.php on line 19
IndexController.php
public function voteAction(){
$shake = Mage::getModel('showdown/votes')
->getCollection()
->addAttributeToSelect('*')
;
}
==============
code/local/Desbest/Showdown/Model/Mysql4/Votes/Collection.php
<?php
class Desbest_Showdown_Model_Mysql4_Votes_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
{
public function _construct()
{
parent::_construct();
$this->_init('showdown/votes');
}
}
最佳答案
addAttributeToSelect()
仅用于 EAV
样式模型集合(产品、客户等)
对于其他模型,您可以使用 Mage_Core_Model_Resource_Db_Collection_Abstract::addFieldToSelect()
方法。
关于magento - Magento 中的 Collection::addAttributeToSelect() 未定义方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11477729/
使用集合时如何创建别名 (AS)。 $collection->addAttributeToSelect('total_qty') 可以这样做: $collection->getSelect()->co
我在 catalog_product_collection_load_after 上设置了一个观察者,并调用了以下代码: getEvent()->getCollection(); $c
Fatal error: Call to undefined method Desbest_Showdown_Model_Mysql4_Votes_Collection::addAttributeTo
我有以下代码从 magento 获取所有产品数据,但它没有返回描述字段。我只得到 short_description。实际上,除了描述之外,它还缺少几个字段。无论如何,这是代码: $collectio
我是一名优秀的程序员,十分优秀!