Laravel4:如何将Datepicker传递给表单?

时间:2013-11-11 10:29:07

标签: jquery twitter-bootstrap datepicker laravel laravel-4

为了正确验证,我必须将所有表单字段重写到Laravel4中, 主要原因是我需要在所有字段中添加Input :: old。

到目前为止,文字,textarea和复选框都很顺利。 但我不知道如何处理日历数据。 它是Datepicker,一个非常好的JQuery插件:https://github.com/eternicode/bootstrap-datepicker 有两个字段,一个用于到达,另一个用于传出。

这是html正常工作:

            <div class="input-append date ">
              <p>
                <label><span><i class="icon-calendar"></i></span> Arrival Date</label>
                <input type="text" name="arrival" class="datepicker" data-date-format="dd/mm/yyyy" id="checkin" placeholder="click here"/> 
              </p>
            </div>

            <div class="input-append date"> 
              <p>
                <label><span><i class="icon-calendar"></i></span> Outgoing Date</label>
                <input type="text" name="outgoing" class="datepicker" data-date-format="dd/mm/yyyy" id="checkout" placeholder="click here"/>
              </p>                
            </div> 

我怎样才能在Laravel4中写这个? 如果由于某种原因不可能不是一件大事,但非常重要的是我可以添加Input :: old('arrival')和Input :: old('outgoing')。 有人知道我该怎么做?

非常感谢!

1 个答案:

答案 0 :(得分:1)

如果输入为:

value="{{ Input::old('inputName') }}"

它应该像我们发现的那样工作!