Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在获取视图内容时遇到问题。主要思想是将一个视图的 HTML/PHP 内容直接加载到另一个视图中。不必加载控制器或模型(但如果可以,那就没问题了)。
<?php include 'file' ?>实际上,在我看来,这个问题可以通过一个简单的方法来解决。但在这种情况下,我想要 CakePHP 等价物。
<?php include 'file' ?>
我不喜欢使用包含,因为在这种情况下,当我加载网站时它真的很慢。我想这样做的主要原因是,如果我只使用一个文件,ctp 会太大;)
你为什么不使用部分?创建一个新视图 abcd.ctp
然后使用$this->render('abcd')
$this->render('abcd')
http://book.cakephp.org/view/314/Views