1

我有一个用户和一个文章模型。当我保存一篇文章时,我还需要保存创建文章的用户,因此我需要他的 ID。所以我需要知道是哪个用户创建的?

我的文章.rb

class Article < ActiveRecord::Base
  belongs_to :user
  attr_accessible :title, :description, :user_id

  validates_length_of :title, :minimum => 5
end

我的文章_controller.rb

def create
    @article = Article.new(params[:article])

    respond_to do |format|
      if @article.save
        format.html { redirect_to @article, notice: 'Article was successfully created.' }
        format.json { render json: @article, status: :created, location: @article }
      else
        format.html { render action: "new" }
        format.json { render json: @article.errors, status: :unprocessable_entity }
      end
    end
  end

我的文章_form

<div class="field">
    <%= f.label :title %><br />
    <%= f.text_field :title %>
  </div>
  <div class="field">
    <%= f.label :description %><br />
    <%= f.text_area :description %>
  </div>

那么如何正确设置文章模型中的 user_id 呢?我想要一个有会话的人!我在 application_controller 中有一个 helper_method 但我不知道如何使用它。

class ApplicationController < ActionController::Base
  protect_from_forgery

  helper_method :current_user

  private
  def current_user
    @current_user ||= User.find(session[:user_id]) if session[:user_id]
  end
end

感谢帮助!

4

1 回答 1

4

你应该在你的控制器中做这样的事情:

def create
  @article = current_user.articles.build(params[:article])
  ...
end

或者

def create
  @article = Article.new(params[:article].merge(:user_id => current_user.id))
  ...
end

但我更喜欢第一个。

于 2013-05-09T22:25:55.253 回答