On 1 July 2016 at 14:52, Scott Le gendre <lists@ruby-forum.com> wrote:
> I have an advertiser model and an experiment model. I've setup the
> associations as follows:
>
> Advertiser has_many :experiments
> Experiment belongs_to :advertisers
>
> The experiments table has a column titled "experiment_type", which can
> either be AOV or Conversion. I am trying to display experiments for the
> particular advertiser by experiment_type.
>
> I can successfully display ALL of the experiments by advertiser with the
> following iteration
>
> <% @advertiser.experiments.each do |experiments| %>
> <td><%= experiments.id %></td>
> <td><%= experiments.name %></td>
> <% end %>
>
> Or I can successfully display all the experiment_type with the following
> iteration
>
> <% @aov.each do |experiments| %>
> <td><%= experiments.id %></td>
> <td><%= experiments.name %></td>
> <% end %>
>
> What I cannot figure out is how to show the experiment_type by
> advertiser.
Something like
@advertiser.experiments.where(experiment_type: "AOV").each do |experiment|
will get you all the AOV experiments (I have assumed that this is
actually a string "AOV").
Note that I have said do |experiment| with singular experiment. This
makes no difference to the way the code works but makes it clear that
this is a single experiment so that experiment.name looks meaningful.
In fact you would be better to write scopes for AOV and Conversion as
then the code will read even better and you would save some typing.
Colin
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAL%3D0gLvuhUybObRQN%2BD3P4CMFf1JUs0KR-D4RS%2B4TPqfpyTFDQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment