摘要: 在Rails中使用polymorphic (多态、虚拟) 关联来自 http://hi.baidu.com/rainchen/item/034bd0d60a24a32938f6f7dd现有个场景,有两个model:person和album,需要添加一个图片来做为其头像/封面。添加一个image model,按照以往需要对这几个model做以下关联设置:class Person < ActiveRecord::Base has_one :image, :dependent => :destroyendclass Album < ActiveRecord::Base has_on 阅读全文
posted @ 2013-05-03 20:50 无姬霸王 阅读(363) 评论(0) 推荐(0)