我有性病是這樣的: class Post
end
class Post::Confirmed < Post
end
class Post::Draft < Post
def confirm!
becomes Post::Confirmed
end
end
...# somewhere in controller
# POST /posts/1/co
Iam設置用戶帳戶和用戶具有不同的角色。 IAM使用STI和我的模型看起來像: class User < ActiveRecord::Base
end
Class Teacher < User
end
Class Student < User
end
我怎樣才能建立一個許多學生和教師,這樣我可以像調用之間一對多的關係, Teacher.students或Student.te
我想要兩層STI。第一層正在工作,但我不確定如何將第一個模型查找到使用STI的另一個表。例如: class Instrument < ActiveRecord::Base
end
class Guitar < Instrument
end
class Piano < Instrument
# and so on...
好的。但我想跟蹤工具的類別,所以我可以告訴他們的類型:
我無法使用回形針將圖像保存到數據庫,我使用了不同的回形針版本(3.5.0,4.2和git回購)。目前我使用的是Gem's Docs中推薦的4.2。 class Instructor < ActiveRecord::Base
#also tried having the has_attached method in this class
end
class Driver < Inst
我想建立一個CRUD控制器和表單內的3 STI模型的Rails 3 我 class Publication < ActiveRecord::Base
has_many :posts
end
,其中帖子是STI模型: class Post < ActiveRecord::Based
attr_accessible :title, :description
end