Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/hadoop/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在yii2中从我的登录页面中排除navbar_Yii2 - Fatal编程技术网

如何在yii2中从我的登录页面中排除navbar

如何在yii2中从我的登录页面中排除navbar,yii2,Yii2,我想从yii2中的登录页面中删除导航栏。下面是附加到它的图像。有谁能告诉我如何从中排除导航栏吗 您可以使用不同的登录布局。。(没有导航栏)。。您可以在视图/布局中看到布局 您可以在相关操作中直接更改视图的布局,例如: public function actioLogin(){ ... ..... $this->layout = 'your_layout_without_navbar'; return $this->render('login', [

我想从yii2中的登录页面中删除导航栏。下面是附加到它的图像。有谁能告诉我如何从中排除导航栏吗


您可以使用不同的登录布局。。(没有导航栏)。。您可以在视图/布局中看到布局

您可以在相关操作中直接更改视图的布局,例如:

 public function actioLogin(){


  ...
  .....
  $this->layout = 'your_layout_without_navbar';

  return $this->render('login', [
            'model' => $model,
        ]);

   }