0
我試圖想出一種讓客戶將自己添加到類別的方法。含義 - 我希望能夠在我的views @ customer.add_to_category(category)或類似的地方打電話。有什麼建議麼?將另一個模型添加到另一個導軌
class Category < ActiveRecord::Base
#Associations
has_many :customers
#Defs
def add_customer(customer_id)
current_customer = Customer.find_by(customer_id: customer_id)
if current_customer
current_customer = Customer.build(customer_id: customer_id)
end
current_customer
end
end
你也需要這張表。 –
是的,正如@japed提醒我的那樣,一般來說,當您更改模式時,您可能需要進行遷移才能添加必要的表/列。 –
這實際上是因爲裏裏問他在評論中是否也需要表格,現在似乎已經過去了。 –