sti

    0熱度

    1回答

    我有性病是這樣的: 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

    0熱度

    1回答

    Iam設置用戶帳戶和用戶具有不同的角色。 IAM使用STI和我的模型看起來像: class User < ActiveRecord::Base end Class Teacher < User end Class Student < User end 我怎樣才能建立一個許多學生和教師,這樣我可以像調用之間一對多的關係, Teacher.students或Student.te

    1熱度

    1回答

    我有幾種模式(用戶,目標),我的目標模型有幾個亞型(練習,瑜伽等) 一個用戶可以有很多目標,但只有每種類型之一。 class User < ActiveRecord::Base has_many :goals, dependent: :destroy has_one :exercise has_one :water has_one :yoga d

    1熱度

    1回答

    關於此主題的幾個問題,但我找不到解決我的問題。 我有(使用單個表繼承)有一個稱爲學生(其中包括)子 學生有一類被稱爲車輛的「HAS_ONE協會一個設計模型稱爲用戶。 我的模型建立: class User < ActiveRecord::Base devise :database_authenticatable, :registerable, :recoverable, :rem

    0熱度

    1回答

    我有一個派生MeetingOnline和MeetingOnSite的類會議。 我希望能夠將會議的觀點用於MeetingOnline和MeetingOnSite。 現在,當我做<%= render @meetings %>它問我meeting_on_lines/_meeting_on_line_partial。但我想讓他用會議/ _meeting,因爲我想要展示的是兩個派生模型之間共享的。 在我的控

    1熱度

    1回答

    我想要兩層STI。第一層正在工作,但我不確定如何將第一個模型查找到使用STI的另一個表。例如: class Instrument < ActiveRecord::Base end class Guitar < Instrument end class Piano < Instrument # and so on... 好的。但我想跟蹤工具的類別,所以我可以告訴他們的類型:

    0熱度

    1回答

    背景:我有城市模型,我希望用戶能夠從主城市列表中選擇一個家鄉和當前城市,以便能夠作爲方法調用user.hometown和user.currentcities。 問題:有什麼方法可以最好地解決這種情況? UPDATE 我忘了提,城市本身就是一種共同體(也有其他類型的社區用戶除了可以選擇城) - 這就是爲什麼我使用STI。

    0熱度

    1回答

    我無法使用回形針將圖像保存到數據庫,我使用了不同的回形針版本(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

    1熱度

    2回答

    我想建立一個CRUD控制器和表單內的3 STI模型的Rails 3 我 class Publication < ActiveRecord::Base has_many :posts end ,其中帖子是STI模型: class Post < ActiveRecord::Based attr_accessible :title, :description end

    0熱度

    1回答

    我在我的控制器使用此: def step_params params.require(@type.underscore.to_sym).permit( :id, :name, :note, :position, :institution_id, :protocol_id, :sequence_id,:orientation_id, step_item_attribut