Question

I have three models (simplified here):

class Child < ActiveRecord::Base
  has_many    :childviews, :dependent => :nullify
  has_many    :observations, :through => :childviews  
end
class Childview < ActiveRecord::Base
  belongs_to  :observation
  belongs_to  :child
end
class Observation < ActiveRecord::Base
  has_many    :childviews, :dependent => :nullify
  has_many    :children, :through => :childviews
end

I'm sending this to some JavaScript using Rails' to_json method like this:

render :layout => false , :json => @child.to_json(
  :include => {
    :observations => {
      :include => :photos, 
      :methods => [:key, :title, :subtitle]
    }
  },
  :except => [:password]
)

This works perfectly. Observations are retrieved fine 'through' the join table (childviews).

However, I also want to get at data that sits in the childviews join table; specifically the value for 'needs_edit'.

I can't figure out how to get at this data in a to_json call.

Can anyone help me? Many thanks in advance.

qryss

Was it helpful?

Solution

Not sure, but shouldn't this work?

@child.to_json(
  :include => {
    :observations => {
      :include => :photos, 
      :methods => [:key, :title, :subtitle]
    },
    :childviews => { :only => :needs_edit }
  }, 
  :except => [:password]
)

EDIT: This might work too, since childviews belongs_to the overvation:

@child.to_json(
  :include => {
    :observations => {
      :include => { :photos, :childviews => { :only => :needs_edit } } 
      :methods => [:key, :title, :subtitle]
    }
  }, 
  :except => [:password]
)

OTHER TIPS

Thanks to Rock for the pointers - I now have it working!

This code:

@child.to_json(:include => 
  {
    :observations => {
      :include => {
        :photos => {},
        :childviews => {:only => :needs_edit}
      }, 
      :methods => [:S3_key, :title, :subtitle]
    }     
  },
  :except => [:password]
)

gives me this output (abbreviated for clarity):

{
    "child":
    {
        "foo":"bar",
        "observations":
        [
            {
                "foo2":"bar2",
                "photos":
                [
                    {
                        "foo3":"bar3",
                    }
                ],
                "childviews":
                [
                    {
                        "needs_edit":true
                    }
                ]
            }
        ]
    }
}

Thank you, Rock! That was doing my head in.

:)

qryss

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top