我正在使用Impressionist gem来捕获记录的印象,并且正在使用chartkick绘制结果图形。我想做的是计算current_user记录的印象数,并在chartkick上显示该计数。这是一个简单的问题,但我似乎无法弄清楚为什么未在图表上显示印象。我的代码在下面
analytics.html.erb
<%= line_chart current_user.posts.sum(&:impressionist_count).group_by_hour(:created_at).count, refresh: 60, xtitle: 'Hourly Posts Impression Count', ytitle: 'Amount of Views', label: 'View Count' %>
答案 0 :(得分:0)
我找到了解决此问题的方法。以防万一将来有人拥有它。下面的代码会将展示次数的总和注入到哈希中,然后将其正确显示在图表上。
<%= line_chart current_user.posts.group_by_day(:created_at).count.inject(Hash.new(0)) { |acc, (k,v)| acc[:impressionist_count] += v; acc[k] = acc[:impressionist_count]; acc }.except(:impressionist_count) %>