0

我正在使用 CakePHP (2.2.x) 构建一个博客,博客的一部分是侧边栏。像 wordpress 这样的侧边栏,其中包含最近的帖子、档案和元数据。我不确定是否应该为侧边栏使用元素或助手。

目前我正在使用一个元素。一些代码片段:

控制器/PostsController.php

public function index() {
    $this->set('posts', $this->Post->find('all'));
}

public function show($id) {
    $this->set('posts', $this->Post->find('all'));
    $this->set('post', $this->Post->findById($id));
}

查看/帖子/index.ctp

<div class="span8">
    <?php foreach ($posts as $post) { ... } ?>
</div>
<?php echo $this->element('sidebar', array('posts' => $posts)); ?>

查看/帖子/show.ctp

<div class="post">
   ... render the post using $post ...
</div>
<?php echo $this->element('sidebar', array('posts' => $posts)); ?>

查看/元素/sidebar.ctp

<?php foreach ($posts as $post) { ... render the recent posts ... } ?>

如您所见,两者show.ctpindex.ctp包含sidebar.ctp元素都需要$posts变量。所以我需要同时调用$this->Post->find('all')index操作show。我$this->Post->find('all') 只想打一次电话,我想知道使用 Helpers 是否可以提供帮助。

4

1 回答 1

1

你会想要使用requestAction()

您可以使用 requestAction() 充分利用元素。requestAction() 函数从控制器操作中获取视图变量并将它们作为数组返回。这使您的元素能够以真正的 MVC 风格执行。创建一个控制器动作,为你的元素准备视图变量,然后在 element() 的第二个参数中调用 requestAction() 来为元素提供来自控制器的视图变量。

你可以在这里阅读更多关于它们的信息:http: //book.cakephp.org/2.0/en/views.html#passing-variables-into-an-element

基本上,您只需指定您希望元素在何处检索其数据。当元素加载时(无论在哪个页面上),它将运行指定的操作来检索您希望它拥有的任何数据。

于 2013-01-12T19:18:38.413 回答