您好我创建了两个模块第一个应用程序第二个评论。想法是在任何应用程序操作(网站页面)中使用评论模块(小部件)。
应用模块 测试控制器
public function commentAction(){
//seting redirection for form
$this->getCommentService()->setRedirection('test/comment');
$list = $this->forward()->dispatch('comment_controrller', array('action' => 'list'));
$add = $this->forward()->dispatch('comment_controrller', array('action' => 'add'));
$view = new ViewModel();
$view->addChild($list, 'list');
$view->addChild($add, 'add');
return $view;
}
看法
评论模块 评论控制器
public function addAction()
{
$form = new CommentForm();
$form->get('submit')->setAttribute('value', 'Add');
$request = $this->getRequest();
if ($request->isPost()) {
$comment = new Comment();
$form->setInputFilter($comment ->getInputFilter());
$form->setData($request->getPost());
if ($form->isValid()) {
$comment ->exchangeArray($form->getData());
$this->getCommentTable()->saveComment($comment);
// Redirect to test controller in application module
return $this->redirect()->toRoute($this->getCommentService()->getRedirection());
}
}
return array('form' => $form);
}
public function listAction()
{
return new ViewModel(array(
$list=> 'test'
));
}
使用简单的变量(列表)一切正常,
尝试将表单重定向回测试控制器中的评论操作时遇到的问题
如果表单无效,我可以将重定向添加到测试/评论,但我将如何将所有验证错误传递给测试/评论(表单)
你能告诉我,如果我在逻辑上是正确的还是在 ZF2 中我们有不同的方式来做小部件