gpt4 book ai didi

ruby-on-rails - 找不到 id= (ActiveRecord::RecordNotFound) 的用户

转载 作者:行者123 更新时间:2023-12-04 02:12:33 26 4
gpt4 key购买 nike

使用我的 Rails 应用程序,我可以成功创建一个对象(称为工作;将它们视为博客文章)作为 current_user。一个用户 has_many 作品。我可以通过使用我的 postgresql 浏览器检查数据库来验证对象是否已成功创建。该表还包含创建工作的正确 user_id,因此我知道我的创建函数在我的 Controller 中有效。

但是,问题是当我尝试查看作品时,出现以下错误:

WorksController 中的 ActiveRecord::RecordNotFound#show

找不到 id=23 的用户

app/controllers/works_controller.rb:43:在“显示”中

奇怪的是,我仍然可以查看几周前创建的作品。该错误仅出现在我最近创建的作品中。

这是 Works Controller :

class WorksController < ApplicationController
#before_filter :current_user, only: [:edit, :update]

def index
@works = Work.all

respond_to do |format|
format.html # index.html.erb
format.xml { render :xml => @works }
end
end
def create
@work = current_user.works.create(params[:work])
redirect_to current_user
end

def edit
@work = current_user.works.find(params[:id])
end

def new
@work = current_user.works.new
end

def destroy
@work = current_user.works.find(params[:id]).destroy
flash[:success] = "Work deleted"
redirect_to current_user
end

def update
@work = current_user.works.find(params[:id])
if @work.update_attributes(params[:work])
flash[:success] = "updated"
redirect_to @work
else
render 'edit'
end
end


def show
@user = User.find(params[:id])
@work = @user.works.find(params[:id])
@activities = PublicActivity::Activity.order("created_at DESC").where(trackable_type: "Work", trackable_id: @work).all

respond_to do |format|
format.html # show.html.erb
format.xml { render :xml => @work }
end
end
end

我假设错误出在 Works Controller 中。我需要在 Controller 中编辑什么才能修复“显示”错误?

编辑:如果我使用上面的当前代码,我只能查看其他人的作品(查看我自己的作品会引发错误)。但是,如果我将 current_user 添加到查询中(例如@works= current_user.works),那么我只能看到我自己的作品。查看其他人的作品会引发错误。我该如何解决这个问题,以便我既可以查看自己的作品,也可以查看他人创作的作品?

编辑 2:

@work = Work.find(params[:id]) 如果我从 Controller 中删除 @user 并在 works show.html View 文件中删除“@user”引用,则它会起作用。但是,我需要 Controller 中的“@user”引用,因为我想显示创建该作品的用户的名称。我应该怎么做呢?

编辑 3:

已修复!再次感谢所有贡献答案的人!这是我修复它的方法:

  1. 我从 Controller 中删除了@user 引用(“显示”操作)。正如 Fred 在下面提到的,@user 引用不需要并且需要删除,因为我使用 :id 两次来引用两个单独的对象。

  2. 将“@work”变量编辑为 @work = Work.find(params[:id]) .这将根据 ID 查找正确的工作项,而不管它是由哪个用户创建的。

  3. 当我需要在工作页面上显示用户数据时,只需使用 <%= @work.user.name %>在 show.html.erb View 页面上。不需要“@user = User.find(params[:id])”,因为我已经使用“belongs_to :user”在工作模型上定义了外键关系。

再次感谢大家的帮助!-j

最佳答案

在你的表演 Action 中,一起摆脱@user,只使用:

@work = Work.find(params[:id])

这将允许任何人查看任何工作。

您的其他操作也是如此。通过说:

@work = current_user.works.find(params[:id])

您正在搜索 current_user 的所有作品以寻找具有 id == params[:id] 的作品。

关于ruby-on-rails - 找不到 id= (ActiveRecord::RecordNotFound) 的用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15693479/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com