gpt4 book ai didi

zend-framework - Zend 框架 - 将消息从当前操作发送到 Controller 中的另一个操作

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

在 Zend 框架中:如何将消息从当前操作发送到 Controller 中的另一个操作?

最佳答案

这是一个使用 FlashMessenger 的非常简单的示例,因此您可以在您的代码中使用它:

public function indexAction()
{
$messages = $this->_helper->FlashMessenger->getMessages('actions');
echo $messages[0];
}


public function redirectAction()
{
$this->_helper->FlashMessenger->addMessage("Your message", 'actions');
$this->_redirect('index/index');
}

如果您在浏览器中指向“重定向”操作,您应该在消息中获取 indexAction。

关于zend-framework - Zend 框架 - 将消息从当前操作发送到 Controller 中的另一个操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8400000/

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