2016-09-09 6 views
1

に私のYiiのstuctureをレンダリングレンダリング:(2)アプリケーションのようなある部分パスのテーマyii2

 
    ___Backend 
    ___frontend______ 
    |    |__ controllers 
    |    |  |__ SiteController.php 
    |    |  |__ ... (other controllers goes here...) 
    |    |__ models 
    |    |__ views 
    |    
    |  
    |  __ 
    |  
    |  : 
    | 
    |__ themes(my theme) 
      |__CompanyProfile 
          |__Index.php 
          |__CSS 
          |__fonts 
          |__...  

私はfollovingコードを使用してYiiの1にレンダリング: (Yiiの1)

public function actionPages($id){ 
    Yii::app()->theme = 'CompanyProfile'; 
    $this->renderPartial('CompanyProfile/views/layouts/Index',array(
     'model'=>PrCompany::model()->findByPk($id), 
    )); 
}` 

しかし、私はyii2でPartialをレンダーすることはできませんでした。私はYiiの中でそれをするにはどうすればよいれるrenderPartial 2

答えて

-1

は試す

public function actionPages($id){ 
    $this->renderPartial('@frontend/themes/CompanyProfile/views/layouts/Index',array(
     'model'=>PrCompany::model()->findByPk($id), 
    )); 
}` 
関連する問題