Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have an object resource with attachments as its associated object. When i call resource.attachments its showing blank array [] that means resource have no attachments, but i want to get object or classname of attachments. Note that attachment is not a nested resource of resource class but connected through habtm association.

share|improve this question

2 Answers

You can use ActiveRecord::Reflection like this to retrieve associations:

 Resource.reflect_on_all_associations

OR

 Resource.reflect_on_all_associations(:has_and_belongs_to_many)

To get all associated class names:

 Resource.reflect_on_all_associations.collect!(&:name)

Cheers.

share|improve this answer

You can call .name on the object's class:

resource.attachments[n].class.name

Note that this is pure ruby and has nothing related to rails and habtm.

By the way you can't call .class.name on your empty array, you have to have some objects in.

share|improve this answer
But resource.attachments returns [] and resource.attachments.class returns Array – user1069420 Jan 31 '12 at 14:18
I can't get it... if there is no attachments, the type of what are you looking for ? And if each resource can only have one type of attachment, you have no need to get this type dynamically... Just store it somewhere in a field of Resource, then get it when you read your resource. – Wizcover Jan 31 '12 at 18:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.