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.
我有一个带有动作“索引”的控制器“测试”。
现在我需要在这个 index.phtml 中加载另一个控制器动作
例如 index(controller) & add(action)
我怎样才能做到这一点?
在您的控制器中,您可以使用以下代码来更改控制器和操作
$this->_forward('someaction', 'somecontroller');
要从视图中包含另一个 phtml,您应该在 phtml 中使用以下代码
<?php echo $this->render("somecontroller/common.phtml");?>
如果您想在某些控制器中使用某些常用功能,请将其分开并从每个操作中调用