0
即時通訊工作模型關聯類的分配。基本協會的作品,但即時通訊與「類別」 - 頁面視圖的問題。軌道模型關聯問題
類別頁面輸出應該是(/類別/ 1)
- 碟-ID
- 碟形標題
- 餐廳-標題< =如何獲得此值?
規則: - 菜屬 一個類別 - 同一盤可以在多個餐館
class Category < ActiveRecord::Base
has_many :dishes
end
class Dish < ActiveRecord::Base
belongs_to :category
end
class Restaurant < ActiveRecord::Base
has_and_belongs_to_many :dishes
end
class DishRestaurant < ActiveRecord::Base
has_many :restaurants
has_many :dishes
end
類別控制器
def show
@category = Category.find(params[:id])
@dishes = @category.dishes
// RESTAURANT TITLE ??
respond_to do |format|
format.html # index.html.erb
format.xml { render :xml => @category }
end
分類視圖: <%=調試@dishes %>
任何提示將是很有幫助。
感謝
皮特