2

我有一个 CRUD 应用程序,在我看来,有来自各种控制器的操作的链接,例如

<?php echo $this->Html->link(__('List Docs'), array('controller' => 'docs', 'action' => 'index')); ?>
<?php echo $this->Html->link(__('Add Doc'), array('controller' => 'docs', 'action' => 'add')); ?>
<?php echo $this->Html->link(__('List Images'), array('controller' => 'images', 'action' => 'index')); ?>
<?php echo $this->Html->link(__('Add Image'), array('controller' => 'images', 'action' => 'add')); ?>

//etc..

现在,我还有一个带有侧边栏的 default.ctp 布局,我想用正在呈现的每个视图的操作链接动态填充它。我知道我可以将操作从我的控制器移动到它们各自的模型并在控制器内的 beforeRender() 回调中设置变量,但是我想将我的操作保留在控制器中,而是在视图中设置一个数组和将其传递给 default.ctp 布局。这是我到目前为止所拥有的:

文档/index.ctp

$links_array = array(
    'list_docs' => array('controller' => 'docs', 'action' => 'index'),
    'add_doc' => array('controller' => 'docs', 'action' => 'add'),
    'list_images' => array('controller' => 'images', 'action' => 'index'),
    'add_image' => array('controller' => 'images', 'action' => 'add')
    );
$this->set('links', $links_array);

布局/default.ctp

print_r($links);

Notice (8): Undefined variable: links [APP\View\Layouts\default.ctp, line 93]我猜这会返回,因为布局是在视图之前呈现的。

在不将动作转移到他们的模型中的情况下,最好的方法是什么?

4

3 回答 3

4
$links_array = array(
'list_docs' => array('controller' => 'docs', 'action' => 'index'),
'add_doc' => array('controller' => 'docs', 'action' => 'add'),
'list_images' => array('controller' => 'images', 'action' => 'index'),
'add_image' => array('controller' => 'images', 'action' => 'add')
);
$this->set('links', $links_array);

...应该在控制器中。

布局将看到视图中可用的任何变量。所以$links将在布局中可见。(如果你真的必须从视图而不是控制器设置变量,你不需要$this->set()在视图中使用,只需使用$links = ...)。

于 2013-04-27T05:00:24.553 回答
3

您是否考虑过使用视图块?该手册甚至使用侧边栏作为其使用示例;使用视图块

// In a view file.
// Create a navbar block
$this->startIfEmpty('navbar');
echo $this->element('navbar', array('links' => $links_array));
$this->end();

// In a parent view/layout
echo $this->fetch('navbar');
于 2013-04-27T08:43:45.317 回答
0

这更好:为脚本和 css 文件使用块

您可以定义块名称,例如scriptBottom
将内容附加到它并显示在布局或其他视图的正确位置。

// In your view
$this->Html->script('carousel', ['block' => 'scriptBottom']);
$this->Html->script('custom', ['block' => 'scriptBottom']);

//or
$this->startIfEmpty('scriptBottom');
$this->append('scriptBottom', $this->script('custom2'));

// In your layout or another view
<?= $this->fetch('scriptBottom') ?>
于 2017-09-26T04:06:14.077 回答