如何在不创建或加载此对象的情况下从“order”之类的对象获取所有字段名?
例子:

Model: sales/order

通过加载顺序和getData()方法,我得到一个包含各种字段名的数组,如:
shipping_tax_amount
grand_total
base_tax_amount

没有订单我怎么能得到这些字段名?在我的情况下,必须有可能进入这个领域,即使没有在马金托商店的订单。

最佳答案

  $resource = Mage::getSingleton('core/resource');
   $readConnection = $resource->getConnection('core_read');
    /**
     * Get the table name
     */
    $tableName = $resource->getTableName('sales/order');

$saleafield=$readConnection->describeTable($tableName);
var_dump($saleafield);

07-24 16:55