YII学习总结6(模板替换和“拼合”)

Posted 雨落知音

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了YII学习总结6(模板替换和“拼合”)相关的知识,希望对你有一定的参考价值。

controller\helloController.php
<?php
namespace app\controllers;

use yii\web\Controller;

class helloController extends Controller
{
public $layout = "common";

public function actionIndex(){

return $this->render("index");//renderPartial功能简单,只替换模板变量,render拼合模板

}
}
?>

view\layouts\common.php
<!DOCTYPE html>
<html lang="en">
<head></head>
<body>
<h1>common view</h1>
<?= $content;?>
</body>
</html>


view\hello\about.php
hello about!
view\hello\index.php
hello index!

以上是关于YII学习总结6(模板替换和“拼合”)的主要内容,如果未能解决你的问题,请参考以下文章

Yii项目开发总结

YII学习总结3

YII学习总结2

6月15日 python学习总结 Django模板语言相关内容

yii模板中常用变量总结

2018-2019-1 20165201 《信息安全系统设计基础》第6周学习总结