作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Rails 中很容易:
View 有:
<% content_for :sidebar do %>
... sidebar HTML ...
<% end %>
布局有:
<%= yield :sidebar %>
我可以在 Yii 中做同样的事情吗?
更新:如何在 main.php 布局中同时使用动态页眉、内容和页脚?
最佳答案
View 有:
<?php $this->beginClip('sidebar'); ?>
Hi there!
<?php $this->endClip(); ?>
布局有:
<?= $this->clips['sidebar'] ?>
更多信息请查看 CController 文档。
但平心而论,这是做侧边栏的错误方法。
关于ruby-on-rails - Yii:如何在 View 中定义局部布局?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8116032/
我是一名优秀的程序员,十分优秀!