2

My Question テーブルには、id、question、answer、created_at、updated_at、sender_id、recipient_id の列があります。

最新の質問が一番上に表示されます。

質問管理者:

 def index
    @questions = Question.all
    respond_with(@questions)
end

def show
  @question = Question.find(params[:id])
  respond_with(@questions)
end

アンサーズ コントローラー:

  def new
    @question = Question.find(params[:question_id])
  end

  def create
    @question = Question.find(params[:question_id])
    if @question.update_attributes(params[:question])
      redirect_to questions_path
    else
      render :new
    end

ルート:

  resources :questions do
    resources :answers, only: [:new, :create]
  end
4

1 に答える 1

1
@questions = Question.order("created_at DESC")
于 2013-09-19T19:51:30.567 に答える