私はレールにかなり慣れていないので、lazy_high_charts に pointStart の日付を設定して、データベース テーブルから created_at の日付を取得しようとしています。日付をフォーマットしようとすると、次のエラーが表示されますが、その理由はわかりません。
undefined method 'year' for "Nov 13, 2012":String
ここに私のコントローラー#インデックスがあります:
def index
authorize! :index, @user, :message => 'Not authorized as an administrator.'
@date = User.pluck(:created_at).first
@count = User.pluck(:sign_in_count)
@h = LazyHighCharts::HighChart.new('graph') do |f|
f.options[:title][:text] = "Number of Logins"
f.options[:chart][:defaultSeriesType] = "area"
f.options[:chart][:inverted] = false
f.options[:chart][:zoomType] = 'x'
f.options[:legend][:layout] = "horizontal"
f.options[:legend][:borderWidth] = "0"
f.series(:pointInterval => 1.day, :pointStart => @date.strftime("%b %d, %Y"), :name => 'Logins', :color => "#b00000", :data => @count)
f.options[:xAxis] = { :minTickInterval => 24 * 3600 * 1000, :type => "datetime", :dateTimeLabelFormats => { day: "%b %e"}, :title => { :text => nil }, :labels => { :enabled => true } }
end
end
私はしばらくそれをいじっていましたが、これが私が得ることができる最も近いものです.