gpt4 book ai didi

php - Zend 框架 : Incuding other controllers in index view

转载 作者:行者123 更新时间:2023-12-04 06:25:29 27 4
gpt4 key购买 nike

我是 Zend FW 的新手。我希望在名为 Feedparsercontroller's indexAction 的 Controller 中编写一个简单的 feedparser。但我想在我的索引页面上将解析的提要输出显示为小部件。如何将输出/变量数据驱动到我的索引 View ?

下面是我的解析器。

class FeedparserController extends Zend_Controller_Action {

public function init() {
/* Initialize action controller here */
}

public function indexAction() {

$feedUrl = 'http://feeds.feedburner.com/ZendScreencastsVideoTutorialsAboutTheZendPhpFrameworkForDesktop';
$feed = Zend_Feed_Reader::import ( $feedUrl );

$this->view->gettingStarted = array ();
foreach ( $feed as $entry ) {
if (array_search ( 'Getting Started', $entry->getCategories ()->getValues () )) {
$this->view->gettingStarted [$entry->getLink ()] = $entry->getTitle ();
}
}
}

}

我想用我的登录实现同样的功能,也注册 Controller 。

最佳答案

也许我没有完全理解你的问题。

但是,这里最好的方法似乎是创建一个单独的提要 Controller ,该 Controller 只负责与提要相关的业务逻辑(检索、按摩、设置查看等)。

然后,创建一个包含 javascript 代码的部分来调用提要 Controller ,然后输出您想要的小部件。这可以很好地完成一些事情。

  • 它集中了与提要相关的逻辑
  • 它允许您将提要小部件放置在您想要的任何位置
  • 这是一种 SOA 方法,通常是一件好事

  • 希望这可以帮助!

    关于php - Zend 框架 : Incuding other controllers in index view,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6086637/

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