在home.tpl上市制造商

时间:2013-02-23 20:24:17

标签: php opencart

在我的主页面中,我只使用以下方法检索类别列表:

$results = $this->model_catalog_category->getCategories();

使用相同的逻辑检索制造商列表:

$results = $this->model_catalog_manufacturer->getManufacturers();

但是这次我收到了一个错误:

  

致命错误:在a上调用成员函数getManufacturers()   非对象   C:\瓦帕\ WWW \电子商务\目录\视图\主题\ pinshop \模板\共同\ home.tpl

所以我想在home.tpl中没有定义model_catalog_manufacturer,我是对的吗?我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

您需要先加载制造商型号,然后才能使用

方法
$this->load->model('catalog/manufacturer');

在上面的$results = ...行之前添加它之后,它将起作用