我正在开发Joomla 3.4应用程序。
我想将get model
菜单项控制器转换为另一个主题控制器。
当我在菜单项控制器中的代码下面运行时,然后调用模型
$model = $this->getModel('item', '', array());
但是当此代码在主题控制器中运行时,nothing display (NULL)
How to call model into another controller?
我面临什么问题。任何人都有自己的想法。
答案 0 :(得分:0)
$model = $this->getModel('Checkout');
$data = $model->getPriceBetween($pid);
然后你需要在结帐模型中将getPriceBetween
函数中的查询。