4

我正在构建一个测试锂应用程序来了解它是如何工作的,我发现表单助手似乎没有识别出我的数据被传回或任何验证错误。

目前我不得不手动传回我的错误,然后在视图中处理它们。

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\Formfield()方法可以采用一个template参数,在示例中是<li{:wrap}>{:label}{:input}{:error}</li>这样,因此帮助程序中有显示验证消息的能力。

那么如何在我的控制器中组织我的数据,以便将其传递回视图,以便帮助程序填充我的字段并显示错误?

编辑
我应该添加示例“Sphere”应用程序,也使用这种方法,那么它是标准的吗?(参考

4

1 回答 1

2

TL;博士

简短的回答是,您可以将表单绑定到Entity的子类,即如中所示的RecordDocumentForm::create()(链接被缩短为::破坏链接解析器)。

您的代码如下所示:

<?= $this->form->create($question); ?>
<?= $this->form->field('title'); ?>
<?= $this->form->field('text'); ?>

长答案:

QuestionsController::ask()

public function ask() {
    $question = Questions::create();
    if (!empty($this->request->data)) {
        if ($question->save($this->request->data)) {
            return $this->redirect(array('Questions::view', 'args'=>$question->id));
        }
    }
    return compact('question');
}

views/questions/ask.html.php

<?= $this->form->create($question); ?>

    <?= $this->form->field('title', array('placeholder'=>'Title your question'));?>

    <?= $this->form->field('text', array('placeholder'=>'Enter your question (supports Markdown)', 'type'=>'textarea'));?>

    <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();?>

请注意表单助手将如何自动显示错误以防万一:)

#li3 哲学的一些有用链接:

1 - http://www.slideshare.net/nateabele/lithium-the-framework-for-people-who-hate-frameworks

2 -大致相同的演示视频(带有更改表单模板的一个很好的示例)

于 2012-05-02T14:19:47.727 回答