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.
我的应用程序中有两个面板,CustomerPanel 和 AdminPanel。我想对两个面板使用通用布局,并在通用布局中调用 CustomerPanel 布局和 AdminPanel 布局。zf2中嵌套布局的最佳方式是什么?
在 ZF1 中,这种 Feature 被称为ActionHelper。在 ZF2 中,我们不再提供此帮助程序。然而,有一个更清洁和更好的解决方案可用。
ActionHelper
Michael Gallego 写了一篇关于它的文章:
通常有两种不同的方法。对于较小的小部件,即呈现 AdminMenu,您可能最好使用ViewHelper. a 的本质ViewHelper是小而简单,因此一旦代码开始变得更复杂并且必须将更多逻辑添加到您的 Widget,请使用forward()-Method,如文章中所述。
ViewHelper
forward()