我正在构建一个测试锂应用程序来了解它是如何工作的,我发现表单助手似乎没有识别出我的数据被传回或任何验证错误。
目前我不得不手动传回我的错误,然后在视图中处理它们。
QuestionsController::ask
public function ask() {
if (!empty($this->request->data)) {
$question = Questions::create($this->request->data);
if ($question->save()) {
return $this->redirect(array('Questions::view', 'args'=>$question->id));
} else {
$errors = $question->errors();
}
if (empty($question)) {
$question = Questions::create();
}
return compact('question', 'errors');
}
}
意见/问题/ask.html.php
<?php
// Assign the protected object to a variable so we can get at it
if(isset($question)){
$data = $question->data();
}else{
$data['title'] = '';
$data['text'] = '';
}
?>
<?=$this->form->create();?>
<?=$this->form->field('title', array('placeholder'=>'Title your question', 'value'=>$data['title']));?>
<?php if(isset($errors['title'])){
echo "<div class='alert alert-error'><a class='close' data-dismiss='alert' href='#'>×</a>";
foreach($errors['title'] as $e){
echo $e."<br/>";
}
echo "</div>";
}?>
<?=$this->form->field('text', array('placeholder'=>'Enter your question (supports Markdown)', 'type'=>'textarea', 'value'=>$data['text']));?>
<?php if(isset($errors['text'])){
echo "<div class='alert alert-error'><a class='close' data-dismiss='alert' href='#'>×</a>";
foreach($errors['text'] as $e){
echo $e."<br/>";
}
echo "</div>";
}?>
<p>Text input supports <?php echo $this->html->link('markdown', 'http://en.wikipedia.org/wiki/Markdown');?></p>
<?=$this->form->submit('Ask', array('class'=>'btn'));?>
<?=$this->form->end();?>
我可以从该方法中看到lithium\template\helper\Form
该field()
方法可以采用一个template
参数,在示例中是<li{:wrap}>{:label}{:input}{:error}</li>
这样,因此帮助程序中有显示验证消息的能力。
那么如何在我的控制器中组织我的数据,以便将其传递回视图,以便帮助程序填充我的字段并显示错误?
编辑
我应该添加示例“Sphere”应用程序,也使用这种方法,那么它是标准的吗?(参考)