我想在 magento 中管理类别,但我在添加类别时遇到了一个错误,当时让我们看看我的错误并给我正确的答案我显示我的错误致命错误:调用 C:\wamp 中非对象上的成员函数 getId() \www\magento\lib\Varien\Data\Tree\Dbp.php 在第 332 行我给出了我的代码
public function loadEnsuredNodes($category, $rootNode)
{
$pathIds = $category->getPathIds();
$rootNodeId = $rootNode->getId();
$rootNodePath = $rootNode->getData($this->_pathField);
$select = clone $this->_select;
$select->order($this->_table.'.'.$this->_orderField . ' ASC');
if ($pathIds) {
$condition = $this->_conn->quoteInto("$this->_table.$this->_idField in (?)", $pathIds);
$select->where($condition);
}