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.
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.
|
|
|
You can use ActiveRecord::Reflection like this to retrieve associations:
OR
To get all associated class names:
Cheers. |
|||
|
|
|
You can call .name on the object's class:
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. |
|||||
|