在通过rails中的表单创建对象期间在db列中设置所有权(user_id)

时间:2013-10-05 14:54:52

标签: ruby-on-rails

(如果标题不够明确,我很抱歉) 我正在构建一个rails应用程序,允许用户创建任务并查看它们。每个用户只能看到自己的任务。我正在使用会话来允许用户登录,如果已经这样做,则跳过登录过程,并使用这些会话来查找当前用户。

每个任务都应该有一个标题和一个正文+一个所有者。用户通过表单插入标题和正文,我想根据登录的用户设置user_id(所有者值)。

我尝试通过task_params中的任务控制器执行此操作(因此新方法将获取当前用户ID,即创建帖子的用户ID)。但这不起作用。

class TasksController < ApplicationController
  before_action :set_task, only: [:show, :edit, :update, :destroy]

  def index
    @tasks = Task.all # need cto hange to get the tasks by owner
  end

  def show
  end

  def new
    @task = Task.new
  end

  def edit
  end

  def create
    @task = Task.new(task_params)
    respond_to do |format|
      if @task.save
        format.html { redirect_to @task, notice: 'Task was successfully created.' }
        format.json { render action: 'show', status: :created, location: @task }
      else
        format.html { render action: 'new' }
        format.json { render json: @task.errors, status: :unprocessable_entity }
      end
    end
  end

  def update
    respond_to do |format|
      if @task.update(task_params)
        format.html { redirect_to @task, notice: 'Task was successfully updated.' }
        format.json { head :no_content }
      else
        format.html { render action: 'edit' }
        format.json { render json: @Task.errors, status: :unprocessable_entity }
      end
    end
  end

  def destroy
    @task.destroy
    respond_to do |format|
      format.html { redirect_to tasks_url }
      format.json { head :no_content }
    end
  end

  private
    # Use callbacks to share common setup or constraints between actions.
    def set_task
      @task = Task.find(params[:id])
    end

    # Never trust parameters from the scary internet, only allow the white list through.
    def task_params
      params.require(:task).permit(:title, current_user.id ,:content)
    end
end

以上不起作用,因为新的调用显示

<p>
  <strong>Title:</strong>
  <%= @task.title %>
</p>

<p>
  <strong>User:</strong>
  <%= User.find(@task.user_id).name %>
</p>

<p>
  <strong>Content:</strong>
  <%= @task.content %>
</p>

我收到以下错误

  <%= User.find(@note.user_id).name %>
Couldn't find User without an ID

任何想法我做错了什么?

1 个答案:

答案 0 :(得分:1)

在这种情况下,任务已经没有user_id,或者id错误。你需要像

这样的东西
<% unless @task.user_id.nil? %>

  <%= User.find(@task.user_id).name %>

<% end %>

如果您不确定ID是否有效,请尝试

<% if user = User.where(id: @task.user_id).first %>
  <%= user.name %>
<% end %>

在我的控制器中:

def create

  @task = Task.new(task_params)

  @task.user_id = session[:current_user_id]