gpt4 book ai didi

ruby-on-rails - 在 Rails 3 中使用 calendar_date_select

转载 作者:太空宇宙 更新时间:2023-11-03 17:08:51 24 4
gpt4 key购买 nike

我一直在尝试在注册期间创建一个用户出生日期选择字段。代码如下所示:

<div id="content">
<h3>Register</h3>
<%= form_for(@user) do |f| %>
<div style="width: 374px; margin: 0 auto;">
<%= f.label :name %>
<%= f.text_field :name %>
<div style="clear: both;"></div>
<%= f.label :email %>
<%= f.text_field :email %>
<div style="clear: both;"></div>
<%= f.label :dob %>
<%= f.calendar_date_select "e_date" %>
</div>
<% end %>
</div>

当我尝试加载它时,rails 给我这个错误:

undefined method `calendar_date_select' for #<#<Class:0x00000101210208>:0x0000010120d0a8>

我做错了什么?

编辑 我使用以下方法安装了 calendar_date_select gem: gem 安装 calendar_date_select如果重要的话,我正在运行 OS X Snow Leopard。

最佳答案

  1. 添加到 Gemfile:
    gem 'calendar_date_select', :git => 'git://github.com/paneq/calendar_date_select.git'

    不要使用 rails3test 分支,它很旧并且是 previously合并到master中

  2. 运行 bundle install

  3. 运行rake calendar:install
  4. 添加<%= calendar_date_select_includes %><%= javascript_include_tag :defaults%> 之后在你的布局中
  5. 添加<%= f.calendar_date_select "calendar" %>在你看来

关于ruby-on-rails - 在 Rails 3 中使用 calendar_date_select,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3979495/

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