CakePhp href链接到不同控制器的视图

时间:2014-06-06 14:28:49

标签: cakephp view controller href

我有2个控制器CubeController.php和CuboidController.php。 他们两个都有Indec.ctp作为视图。 我想在cubeController页面的视图上创建一个调用cuboidController视图的链接? 我该怎么办?

1 个答案:

答案 0 :(得分:0)

你可以这样做;

<?php echo $this->Html->link( "Here a message",   array('controller' => 'cube', 'action' => 'index') ); ?>