Yii: 클립 세 션 을 이용 하여 복잡 한 인터페이스 구축
2106 단어 yii
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Clip</title>
</head>
<body>
<div id="header">
this is header and main menu here
</div>
<div id="main">
<div id="left">
<?php echo $content ?>
</div>
<div id="right">
<div class="block">
<?php echo $this->clips['submenu'] ?>
</div>
<div class="block">
<?php echo $this->clips['desc'] ?>
</div>
</div>
</div>
<div id="footer">
footer section
</div>
</body>
</html>
view 의 실현:
hello, this is the view 1
<?php $this->beginClip('submenu') ?>
here is the sub menu for view 1
<?php $this->endClip() ?>
<?php $this->beginClip('desc') ?>
here is the description for view 1
<?php $this->endClip() ?>
hi, view 2 is here
<?php $this->beginClip('submenu') ?>
here is the sub menu for view 2
<?php $this->endClip() ?>
<?php $this->beginClip('desc') ?>
here is the description for view 2
<?php $this->endClip() ?>
주의:
물론 클립 도 완벽 하 지 는 않 습 니 다. django 의 block 에 비해 모든 클립 에 초기 값 을 설정 할 수 없습니다. 그러면 모든 view 에서 클립 에 값 을 부여 해 야 합 니 다. 이것 은 좀 번 거 롭 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
LimeSurvey HelloWorld 플러그인LimeSurvey 내의 명령줄에서 간단한 명령을 실행하려면 다음 코드가 필요합니다.upload/plugins 아래의 폴더 구조는 다음과 같아야 합니다. 헬로월드 config.xml HelloWorld.php Lim...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.