4

我正在开发一个跟踪不同事件及其状态的 Rails 应用程序。

这是我的Status模型:

class Status < ActiveRecord::Base
  attr_accessible :value

  has_many :events
end

有一个添加其他状态类型的界面。

我的Event模型如下所示:

class Event < ActiveRecord::Base
  attr_accessible :status_id

  belongs_to :status

  class << self
    Status.all.each do |status|
      define_method(status.value.downcase) do
        send("where", :status_id => Status.find_by_value(status.value.downcase))
      end
    end
  end
end

因此,例如,我有三个不同的状态值:OutageSlowError等。

有了这个我可以做到:

Event.outage

或者:

Event.slow

我将取回ActiveRecord::Relation具有该状态的所有事件。这按预期工作。

我有一个使用Highcharts动态生成一些图表的视图。这是我的视图代码:

<script type="text/javascript" charset="utf-8">
  $(function () {
    new Highcharts.Chart({
        chart: { renderTo: 'events_chart' },
        title: { text: '' },
        xAxis: { type: 'datetime' },
        yAxis: {
          title: { text: 'Event Count' },
          min: 0,
          tickInterval: 1
        },
        series:[
              <% { "Events" => Event,
                   "Outages" => Event.outage, 
                   "Slowdowns" => Event.slow, 
                   "Errors" => Event.error,
                   "Restarts" => Event.restart }.each do |name, event| %>
            {
              name: "<%= name %>",
              pointInterval: <%= 1.day * 1000 %>,
              pointStart: <%= @start_date.to_time.to_i * 1000 %>,
              pointEnd: <%= @end_date.to_time.to_i * 1000 %>,
              data: <%= (@start_date..@end_date).map { |date| event.reported_on(date).count}.inspect %>
            },
            <% end %>]
          });
        });
</script>

<div id="events_chart"></div>

我想使用Status数据库中的类型列表动态生成此哈希:

<% { 
     "Outage" => Event.outage, 
     "Slow" => Event.slow, 
     "Error" => Event.error,
     "Restart" => Event.restart }.each do |name, event|
%>

使用这样的东西:

hash = Status.all.each do |status|
  hash.merge("#{status.value}" => Event) ||= {}
end

我想调用each哈希来生成我的图表。不过,这并没有给我一个哈希值,它给了我一个Array,就像Status.all它本身一样。

4

1 回答 1

2

这就是我的做法,使用Enumerable#each_with_objectand Object#send

hash = Status.select(:value).each_with_object({}) do |s, h|
  h[s.value.upcase] = Event.send s.value.downcase
end
于 2013-01-10T04:05:03.980 回答