douhaoqiao9304 2013-06-13 15:39
浏览 46
已采纳

Laravel:在允许Form :: old()的同时填充表单

What's the best way to populate forms with database data made using the Form class in Laravel while still giving way to Input::old() if there are any errors? I can't seem to get it right.

My current setup looks something like this

public function getSampleform() {
    // Load database data here

    return View::make('sampleform');
}

public function postSampleform() {
    // Save to database again then redirect to success page

    return Redirect::to('success');
}

I usually echo my fields in the View this way:

<?php echo Form::text('entry', Input::old('entry'), array('class' => 'form-select'); ?>

What am I doing wrong?

  • 写回答

4条回答 默认 最新

  • duanmei1922 2013-06-15 14:24
    关注

    The best way to do this is using Form Model Binding (http://four.laravel.com/docs/html#form-model-binding):

    Use an existing model or create an 'empty' model class:

    class NoTable extends Eloquent { 
        protected  $guarded = array();
    }
    

    Find your model or instantiate your empty class and fill it with data:

    public function getSampleform() {
        // Load database data here
    
        $model = new NoTable;
        $model->fill(['name' => 'antonio', 'amount' => 10]);
    
        return View::make('sampleform')->with(compact('model'));
    }
    

    If you'll use your form with a table that you already have data on it, this is how you uset it:

    public function getSampleform() {
    
        // Locate the model and store it in a variable:
        $model = User::find(1);
    
        // Then you just pass it to your view:   
        return View::make('sampleform')->with(compact('model'));
    }
    

    To have your form populated, use Form Model Binding, this is an example in Blade:

    {{ Form::model($model, array('route' => array('sample.form')) ) }}
        {{ Form::text('name') }}
        {{ Form::text('amount') }}
    {{ Form::close() }}
    

    You don't even have to pass your Input data, because Laravel will populate your inputs using what comes first:

    1 - Session Flash Data (Old Input)
    2 - Explicitly Passed Value (wich may be null or not)
    3 - Model Attribute Data
    

    And Laravel will also take care of csrf token for you, using Form::open() or Form::model().

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀