溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在Yii框架中操作視圖和視圖布局

發(fā)布時(shí)間:2021-06-08 15:57:56 來源:億速云 閱讀:180 作者:Leah 欄目:開發(fā)技術(shù)

本篇文章給大家分享的是有關(guān)怎么在Yii框架中操作視圖和視圖布局,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

Yii 視圖

控制器方法代碼:

  public function actionIndex(){
    $data = array(
      'name' => 'zhangsan',
      'age' => 12,
      'address' => array('北京市','朝陽區(qū)'),
      'intro' => '我是簡(jiǎn)介,<script>alert("123");</script>'
    );
    return $this->renderPartial('index',$data);//第二個(gè)參數(shù)賦值
  }

視圖代碼:

<?php
  use yii\helpers\Html;
  use yii\helpers\HtmlPurifier;
?>
<h2>Hello index view</h2>
<h3>姓名:<?php echo $name;?></h3>
<h3>年齡:<?=$age?></h3>
<h3>地址:<?=$address[0]?> <?=$address[1]?></h3>
<h3>簡(jiǎn)介:<?=Html::encode($intro)?> </h3>
<h3>簡(jiǎn)介:<?=HtmlPurifier::process($intro)?> </h3>

Yii 視圖布局

控制器代碼:

 //設(shè)置的布局文件
  public $layout = 'common';
  public function actionAbout(){
    $data = array('page_name'=>'About');
    //render方法會(huì)把視圖文件common的內(nèi)容放到$content當(dāng)中,并顯示布局文件。
    return $this->render('about',$data);
  }

公共視圖common代碼:

<!DOCTYPE html>
<html>
<head>
  <title></title>
  <meta charset="UTF-8">
</head>
<body>
<h2>這是Common內(nèi)容</h2>
<div>
  <?=$content?>
</div>
</body>
</html>

視圖about代碼,并調(diào)用了activity視圖:

<h2> Hello <?=$page_name?></h2>
<?php echo $this->render('activity',array('page_name'=>'activity'));?>

視圖activity代碼:

<h2> Hello <?=$page_name?></h2>

結(jié)論:視圖引用了公共布局文件,并且在一個(gè)視圖中調(diào)用另一個(gè)視圖文件。

Yii 視圖數(shù)據(jù)塊

控制器代碼:

  public $layout = 'common';
  public function actionStudent(){
    $data = array('page_name'=>'Student');
    return $this->render('student',$data);
  }
  public function actionTeacher(){
    $data = array('page_name'=>'Teacher');
    return $this->render('teacher',$data);
  }

公共布局文件common代碼:

<!DOCTYPE html>
<html>
<head>
  <title>
    <?php if(isset($this->blocks['webTitle'])):?>
      <?=$this->blocks['webTitle'];?>
    <?php else:?>
      commom
    <?php endif;?>
  </title>
  <meta charset="UTF-8">
</head>
<body>
<h2>這是Common內(nèi)容</h2>
<div>
  <?=$content?>
</div>
</body>
</html>

視圖student代碼:

<?php $this->beginBlock('webTitle');?>
<?=$page_name?>頁面
<?php $this->endBlock();?>
<h2> Hello <?=$page_name?></h2>

視圖teacher代碼:

<h2> Hello <?=$page_name?></h2>
<?php $this->beginBlock('webTitle');?>
<?=$page_name?>頁面
<?php $this->endBlock();?>

以上就是怎么在Yii框架中操作視圖和視圖布局,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

yii
AI