从text_field生成日期

时间:2015-02-06 04:38:15

标签: ruby-on-rails type-conversion

我在rails应用程序中使用bootstrap datetimepicker,为了使用它,我的列类型必须是一个字符串。但我的应用程序要求我将日期作为可以格式化的日期。我需要格式化我的text_field以呈现可以在必要时更改的日期。 这是我现在的代码:

<div class="form-group">
    <div class='input-group date' id='datetimepicker1'>
        <span class="input-group-addon"><span class="glyphicon glyphicon-calendar"></span>
        </span>
<%= f.text_field :date, class: "form-control", :value => (@event.date.blank? ? '' : @event.date.strftime('%m/%d/%Y'))  %>

    </div>
</div>
<script type="text/javascript">
            $(function () {
                $('#datetimepicker1').datetimepicker();
            });
        </script>

0 个答案:

没有答案