0

(如果标题不够清楚,我很抱歉)我正在构建一个允许用户创建任务并查看它们的 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

任何想法我做错了什么?

4

1 回答 1

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]
于 2013-10-05T15:08:01.400 回答