是否有可能實現的,在Rails 3中,關聯 class ApiCredentials < ActiveRecord::Base
belongs_to Model
end
其中Model可以是任何模型。 然後在api_credentials表中,我有類似model_id和model的字段來跟蹤此關聯。 我不認爲方便的標準ActiveRecord查詢仍然可以正常工作,但是有沒有人有效
我無法與simple_form建立關聯。 我有以下型號。 class Product < ActiveRecord::Base
belongs_to :Retailer
end
和 class Retailer < ActiveRecord::Base
has_many :Products
end
我的表單部分(產品/ _form.html.erb)包含以下 <%=
這已被竊聽我一會兒...... 我怎樣才能串插一個datetime在Rails的ActiveRecord的查詢? # Works, but supeh ugleh:
Model.where("created_at >= ?", Time.now - 5.days)
# How do I do this?
Model.where("created_at >= #{Time.now - 5.d
我有一個Trade和Execution之間的ActiveRecord關係。我能得到 Trade.executions #returns all exeuctions realated to the Trade
如果我做 Trade.executions.last
看來似乎返回基於ID的最後執行記錄。 這是基於ID檢索與貿易相關的最後執行記錄的正確方法嗎?
所以我正在做一個項目,其中有任務,組成一個尋找清道夫。所以當用戶點擊一個特定的狩獵時,我希望show.html.erb文件顯示狩獵以及與該狩獵相關的任務。兩種模型(Hunt.rb和Task.rb)都具有「has_and_belongs_to_many」關係。我的控制器最初有這個代碼,但它顯示了數據庫中的每個任務,而不僅僅是與特定的尋找相關的任務。 def show
@hunt = Hun