4

我在 joomla 中使用不同的模型,而不是视图自己的模型,通过从控制器分配它类似于它的名称,例如:

         $view->setModel($this->getModel('user'));

现在如何在视图中使用它的方法 getSingleUser($user_id) 。在 joomla 文档的示例中,它使用的是这样的:

$this->get("data1","model2");

所以我假设data1是model2中的方法名称?如果是这样,那么我如何传递在我的情况下是用户 ID 的参数。我知道这是许多 joomla 开发人员所做的简单事情,但我是各种开发人员的杰克,并且是 joomla 的新手,所以我期待你们告诉我。

4

1 回答 1

9

第一种方法

我通过如下修改控制器来做到这一点(这是用户的控制器)

function doThis(){ // the action in the controller "user" 
    // We will add a second model "bills"
    $model = $this->getModel ( 'user' ); // get first model
    $view  = $this->getView  ( 'user', 'html'  ); // get view we want to use
    $view->setModel( $model, true );  // true is for the default model  
    $billsModel = &$this->getModel ( 'bills' ); // get second model     
    $view->setModel( $billsModel );             
    $view->display(); // now our view has both models at hand           
}

在视图中,您可以简单地对模型进行操作

function display($tpl = null){              
    $userModel = &$this->getModel(); // get default model
    $billsModel = &$this->getModel('bills'); // get second model

    // do something nice with the models

    parent::display($tpl); // now display the layout            
}

替代方法

在视图中直接加载模型:

function display($tpl = null){
 // assuming the model's class is MycomponentModelBills 
 // second paramater is the model prefix    
        $actionsModel = & JModel::getInstance('bills', 'MycomponentModel'); 
}
于 2011-08-31T16:39:18.897 回答