Ruby On Rails اسئلة واجوبة المقابلات
Question: Explain a polymorphic association in Ruby on Rails.Answer: Polymorphic associations allow a model to belong to more than one other model through a single association.class Picture < ActiveRecord::Base belongs_to : imageable, polymorphic: true end class Employee < ActiveRecord::Base has_many : pictures, as: : imageable end class Product < ActiveRecord::Base has_many : pictures, as: : imageable end
|
احفظ للمراجعة
احفظ هذا العنصر في الإشارات المرجعية، او حدده كصعب، او ضعه في مجموعة مراجعة.
سجل الدخول لحفظ الإشارات المرجعية والاسئلة الصعبة ومجموعات المراجعة.
هل هذا مفيد؟ نعم لا
الاكثر فائدة حسب تقييم المستخدمين:
- What is Ruby On Rails?
- Why Ruby on Rails?
- Explain how (almost) everything is an object in Ruby.
- What are Gems and which are some of your favorites?
- How would you declare and use a constructor in Ruby?