Yii2高级更改视图默认路径(主题)

时间:2017-10-26 22:55:46

标签: yii2-advanced-app theming

我希望我的应用程序能够自动更改模板 所以我创建了这个结构frontend / web / themes / myTheme
以下http://www.yiiframework.com/doc-2.0/guide-output-theming.html我在frontend / config / main.php

中添加了此代码
    'components' => [
        'view' => [
            'theme' => [
                'basePath' => '@app/themes/myTheme',
                'baseUrl' => '@web/themes/myTheme',
                'pathMap' => [
                    '@app/views' => '@app/themes/myTheme',
                ],
            ],
        ],
    ],

然而我一直得到错误" /var/www/html/myProject/app/frontend/views/site/index.php"视图文件不存在???

我还试图根据How to change default view path in Yii2?

将此功能放在控制器中
public function getViewPath()
{
    return Yii::getAlias('@web/themes/myTheme/site');
}

所以我的问题是:     1.如何更改视图默认路径?     2.我怎样才能自动完成,因为我无法在会话期间更改common / config / main.php设置?

站点控制器

class SiteController extends Controller
{
    public function behaviors()
    {
        return [
            'access' => [
                'class' => AccessControl::className(),
                'rules' => [
                    [
                        'actions' => ['index'],
                        'allow' => true,
                        'roles' => ['?'],
                    ],
                    [
                        'actions' => ['index'],
                        'allow' => true,
                        'roles' => ['@'],
                    ],
                ],
            ],
        ];
    }
    public function actions()
    {
        return [
            'error' => [
                'class' => 'yii\web\ErrorAction',
            ],
            'captcha' => [
                'class' => 'yii\captcha\CaptchaAction',
                'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null,
            ],
        ];
    }

    /**
     * Displays homepage.
     *
     * @return mixed
     */
    public function actionIndex()
    {
        $searchModel = new ProductSearch();
        $dataProvider = $searchModel->search(Yii::$app->request->queryParams);

        return $this->render('index', [
            'searchModel' => $searchModel,
            'dataProvider' => $dataProvider,
        ]);
    }
}

2 个答案:

答案 0 :(得分:1)

我认为您正在配置错误的文件。不要在common / config中配置主题 试试这个: 在 frontend / config / main.php

SonarQube

如果您需要在后端/ config / main.php

中配置后端
'components' => [
        'view' => [
            'theme' => [
                'pathMap' => [
                    '@frontend/views'=>'@frontend/themes/myTheme',
                ],
            ],
        ],
    ],

common 文件夹必须包含两者所需的文件 前端和后端。 希望这会有所帮助。

答案 1 :(得分:0)

第一个问题:

我认为使用高级应用程序时yii中存在常见错误:别名@app引用前端后端 common <的根目录/ strong>取决于您从View documentation here访问它的位置。 你会使用ovicko提出的解决方案。

第二个问题:

您可以通过视图对象在控制器中动态更改主题配置:

 $this->view->theme->pathMap =['@app/views' => '@app/themes/myTheme/',]; 

修改 根据{{​​3}}:

  

主题是一种用另一种视图替换一组视图而无需触及原始视图渲染代码的方法。

什么意味着原始视图文件必须存在,并且主题只是在渲染过程中替换它。所以你必须在/var/www/html/myProject/app/frontend/views/site/index.php(一个空文件有效)中创建一个文件,以便主题作品。 这听起来很荒谬,我知道,但它确实有效。

但我认为使用Documentation更好更容易改变控制器中的布局:

 $this->layout = 'route/yourlayout';