我想以zend形式显示一个由异常抛出的简单异常消息。我检查数据库中是否存在重复记录,如果退出,那么我想抛出一个错误,说该数据库中已存在具有该名称的记录。我想在add.phtml文件中完全显示在记录名称textfield之后。
这就是我要做的事情:
在我的控制器中:
public function addAction()
{
try {
$records->validateDuplicateRecords($recordTitle);
if ($form->isValid()) {
//doing all the stuff like saving data to database
}
} catch (\Exception $e) {
echo $e->getMessage(); //Not sure with this part
}
}
我正在检查重复记录的类:
records.php
public function validateDuplicateRecords($recordTitle)
{
//fetching all titles from database
//comparing with $recordTitle using foreach and if
//all these here in the loop works, I am giving the skeleton of my code
foreach($records as $record)
{
if($record == $recordTitle) {
throw new \Exception("Record with title '$recordTitle' already exists");
}
return true;
}
}
所以这基本上就是我在做什么,我知道这个try和catch如何使用纯PHP的东西,但我不知道如何使用Zend Framework 2和zend表单的异常。如果任何人有这方面的解决方案,如果可以分享它会很高兴。
P.S。我遵循了相册模块,所以基本上我的结构与官方模块或多或少相似。
编辑:add.phtml已添加
add.phtml
<?php
$title = "Add New Record Title";
$this->headTitle($title);
?>
<h2><?php echo $this->escapeHtml($title); ?></h2>
<?php
$form = $this->form;
$form->setAttribute("action", $this->url("addRecordTitle", array('controller' => "album", 'action' => "add")));
$form->prepare();
echo $this->form()->openTag($form);
echo $this->formRow($form->get('recordTitle'));
echo $this->formInput($form->get('submit'));
echo $this->form()->closeTag($form);
?>
答案 0 :(得分:5)
鉴于你的例子,一种方法就是这样做。但是我建议你自己阅读内置的验证器Db\RecordExists and Db\RecordNoExists,因为它们可能已经做了你想要做的事情。
public function addAction()
{
$form = $this->getForm(); //theoretical
try {
$records->validateDuplicateRecords($recordTitle);
} catch (\Exception $e) {
$form->setMessages(array(
'recordTitle' => array($e->getMessage())
));
return new ViewModel(array(
'form' => $form
));
}
if ($form->isValid()) {
//usual stuff
}
}
使用此代码,您可以将错误消息附加到title
- FormElement上,请务必将名称编辑为title元素的名称。