gpt4 book ai didi

php - Zend Framework 2 - 在 View 中调用操作

转载 作者:行者123 更新时间:2023-12-04 05:21:53 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:




8年前关闭。




Possible Duplicate:
How can I use ZF1 $this->action in ZF2?



我从几年前开始使用 PHP,我非常了解 OOP,但我是 Zend Framework 2 的新手,我在它的概念上遇到了一些麻烦。

我正在尝试开发一个网站,已经完成,但现在使用 ZF2。

我最大的问题之一是布局/ View (我已经知道它们之间的区别)。

在该网站中,有一个动态生成的侧边栏菜单(从数据库中提取的内容...让我们在 CategoriesController 中调用 sideBarGenAction)。我需要在每个页面中显示它(在布局模板内)。所以,这就是我的疑问:如何做到这一点,而不在每个其他 Action 中调用该 Action (sideBarGenAction)?

如果侧边栏有静态内容,我可以使用 $this->partial,但它有动态内容,而部分需要传递给变量。

我想我可以创建一个 ViewHelper,但它没有多大意义(因为它不是一个小部件,它是一个模型中的业务规则......如果我必须为我需要的一切创建一个 ViewHelper称为“ View 内”,我不需要 MVC 框架)。

最佳答案

所以你的模型应该有可重用的单元可测试方法来获取数据片段,可以是字符串、对象、数组等。这是正确处理数据的逻辑所在,因此它可以以有意义的方式使用,并且可以是单元测试。

在 Controller 中,您实例化该模型的一个实例并使用您需要的方法来获取您想要使用的数据。然后将其传递给 View 。现在这可以在操作本身中,或者,您可以创建一个可重用的方法来执行此操作并返回数据,以便其他操作也可以使用它。如果这也可以在其他 Controller 中使用,那么您可能应该创建一个 Controller 使用的 Action 助手......你明白了......有很多方法可以构建相同的东西,具体取决于您对可重用代码的关注程度。

要将数据从 Controller 传递到 zf1 中的 View ,您需要这样做

$this->view->whateverItIsCalled = $someValueOrArrayTypeThing;

然后在 View 中使用它,回显它等,如 $this->whateverItIsCalled.
在zf2中是这样的
namespace Content\Controller;

use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;

class ArticleController extends AbstractActionController
{
public function viewAction()
{
// get the article from the persistence layer, etc...

$view = new ViewModel();

$articleView = new ViewModel(array('article' => $article));
$articleView->setTemplate('content/article');

$primarySidebarView = new ViewModel();
$primarySidebarView->setTemplate('content/main-sidebar');

$secondarySidebarView = new ViewModel();
$secondarySidebarView->setTemplate('content/secondary-sidebar');

$sidebarBlockView = new ViewModel();
$sidebarBlockView->setTemplate('content/block');

$secondarySidebarView->addChild($sidebarBlockView, 'block');

$view->addChild($articleView, 'article')
->addChild($primarySidebarView, 'sidebar_primary')
->addChild($secondarySidebarView, 'sidebar_secondary');

return $view;
}
}

并且 View 将像您之前在 zf1 中使用的东西一样使用它,例如
<?php // "content/article" template ?>
<div class="row content">
<?php echo $this->article ?>

<?php echo $this->sidebar_primary ?>

<?php echo $this->sidebar_secondary ?>
</div>

<?php // "content/article" template ?>
<!-- This is from the $articleView View Model, and the "content/article"
template -->
<article class="span8">
<?php echo $this->escapeHtml('article') ?>
</article>

<?php // "content/main-sidebar" template ?>
<!-- This is from the $primarySidebarView View Model, and the
"content/main-sidebar" template -->
<div class="span2 sidebar">
sidebar content...
</div>

<?php // "content/secondary-sidebar template ?>
<!-- This is from the $secondarySidebarView View Model, and the
"content/secondary-sidebar" template -->
<div class="span2 sidebar pull-right">
<?php echo $this->block ?>
</div>

<?php // "content/block template ?>
<!-- This is from the $sidebarBlockView View Model, and the
"content/block" template -->
<div class="block">
block content...
</div>

你可以看到你如何实例化一个新的 View 模型,然后不仅将东西传递给 View ,而且你还可以指定更具体的部分,这是不同的。

总之,希望能帮到你。基本上,长话短说,ZF2 比 ZF1 提高了性能有几个原因,但减少开销是一个重要的原因。很多框架,事实上,大多数都是这样做的,因为你只在需要的时候才需要它。

关于php - Zend Framework 2 - 在 View 中调用操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13596547/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com