将模型从模型返回到块不在Magento 1.9中工作

时间:2017-03-27 05:33:48

标签: magento magento-1.9

public function loadByField($field,$value)

{
     $table = $this->getMainTable();
     $where = $this->_getReadAdapter()->quoteInto("$field = ?", $value);
     $select = $this->_getReadAdapter()->select()->from($table,array('id'))->where($where);

     $id = $this->_getReadAdapter()->fetchOne($select);
     // print_r($id);

     return $id;
}

每当我print_r直接在模型和调用函数块中时,此代码运行良好。但是它没有作为回报并且在块中得到这个值而不是在PHTML中得到块。

0 个答案:

没有答案