gpt4 book ai didi

jquery - bootstrap-datepicker-rails - 选择日期将不会保留

转载 作者:行者123 更新时间:2023-12-01 07:20:56 25 4
gpt4 key购买 nike

我已经安装了以下 gem,并正在尝试实现一个日期选择器。日期选择器显示在字段中,但是当我选择日期时,数据不会保留,甚至不会显示在字段中。我是否在使用 CoffeeScript 或 html 时犯了错误 - 或者这可能是 Gems 之间的不兼容?

gem 'bootstrap-sass'
gem 'bootstrap-datepicker-rails'

http://www.eyecon.ro/bootstrap-datepicker/

https://github.com/Nerian/bootstrap-datepicker-rails

articles.js.coffeescript

jQuery ->
$('#datepicker').datepicker()
dateFormat: 'yyyy-mm-dd'
weekStart: 0
autoclose: true

_form.html.erb

<div class="field" id="datepicker" data-date="current" > 
<%= f.label :due %>
<%= f.text_field :due, 'data-behaviour' => 'datepicker' %>
</div>

最佳答案

在 Bootstrap 日期选择器格式中,您需要按以下方式格式化日期:

<script type="text/javascript">
$(document).ready(function(){
$('[data-behaviour=datepicker]').datepicker({format: 'yyyy-mm-dd'});
});
</script>

关于jquery - bootstrap-datepicker-rails - 选择日期将不会保留,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13867394/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com