3

我将使用 StackOverflow 作为我的示例。假设我有一个Question模型。已登录的用户可以“加星标”以Question将其标记为他们的最爱之一。在数据库中,这种东西可能会存储在一个UserQuestions带有user_id字段和question_id字段的表中。这种功能不是典型的 CRUD,因为实际上只有“列表”、“添加”和“删除”。此外,“用户已加星标的问题”列表中显示的记录不应是UserQuestion记录,而是Question记录。我在控制器和UserQuestion模型中放入什么代码?

class MyFavoriteQuestionsController < ApplicationController

  def index
    #list just the questions associated with current_user
  end

  def add
    #insert a row in the database for current_user and selected question
  def

  def remove
    #remove the row from the database
  end
end
4

1 回答 1

7

如果您坚持惯例,我会说这是典型的杂乱无章。添加是创建,删除是销毁。

class FavouritesController < ApplicationController

  before_filter :find_user

  def index
    @favourites = @user.favourites
  end

  def create
    @question = Question.find params[:id]
    @user.favourites << @question
  def

  def destroy
    @favourite = @user.favourites.find_by_question_id params[:id]
    @favourite.destroy unless @favourite.blank?
  end
end


#routes.rb

resources :users do
  resources :favourites, :only => [:index, :create, :destroy]
end

#user.rb

has_many :user_favourites, :dependent => :destroy
has_many :favourites, :through => :user_favourites, :source => :question
于 2011-08-11T07:00:58.113 回答