我正在尝试获取用户订单历史记录,并使用以下查询及其正常工作。但是它返回表中所有与订单相关的字段
$collection = Mage::getModel("sales/order")->getCollection()
->addAttributeToSelect('*')
->addFieldToFilter('customer_id', 400)
->setOrder('created_at', 'desc');
我只想获取特定字段,所以在-> addAttributeToSelect('*')的情况下
used the following code
->addAttributeToSelect(array('created_at','customer_id','increment_id','updated_at','status','entity_id','state'))
但是出现错误,如“无法确定字段名称”。