我在Model/Entity/Attribute/Abstract.php
第389行时出错,它只发生在产品视图页面上。
这是Abstract.php第389行的内容:
public function getSource()
{
if (empty($this->_source)) {
if (!$this->getSourceModel()) {
$this->setSourceModel($this->_getDefaultSourceModel());
}
$source = Mage::getModel($this->getSourceModel());
if (!$source) {
throw Mage::exception('Mage_Eav',
Mage::helper('eav')->__('Source model "%s" not found for attribute "%s"',$this->getSourceModel(), $this->getAttributeCode())
);
}
// 389--> $this->_source = $source->setAttribute($this);
}
return $this->_source;
}
错误仅输出:致命错误:在第389行上的Mage_Adminhtml_Model_System_Config_Source_Yesno::setAttribute()
中调用未定义的方法 /home/angeecom/public_html/app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
。
前段时间我发现了一段代码,我可以通过在Magento核心文件的行上方添加它来打印出更多有关错误但我无法找到它的代码。无论如何,我怎么去追踪这件事呢?