这个应用程序是为导师准备的。 当导师完成课程时,他们会填写一份class_report。然后,索引页应仅显示其class_reports。 这是我的问题:我做了两个帐户,test1 和 test2。test1 可以看到 test1 和 test2 的class_reports但 test2 看不到任何帖子,甚至看不到他们自己的帖子。它甚至说当test2创建帖子时,test1 创建了它。
我很确定索引部分或创建部分class_reports_controller有些东西,但我不完全确定 tbh。我认为它也可能在模型中。
class_reports_controller.rb
class ClassReportsController < ApplicationController
before_action :require_login
before_action :set_class_report, only: [:show, :edit, :update, :destroy]
# GET /class_reports
# GET /class_reports.json
def index
@class_report = current_user.class_reports
end
def create
@class_report = ClassReport.new(class_report_params)
@class_report.user = User.first
respond_to do |format|
if @class_report.save
format.html { redirect_to @class_report, notice: 'Class report was successfully created.' }
format.json { render :show, status: :created, location: @class_report }
else
format.html { render :new }
format.json { render json: @class_report.errors, status: :unprocessable_entity }
end
end
end
模型:
class_report.rb
class ClassReport < ApplicationRecord
belongs_to :user
end
用户.rb
class User < ApplicationRecord
include Clearance::User
has_many :class_reports
before_save { self.email = email.downcase }
end
您的create
操作有问题,在以下行:
@class_report.user = User.first
并将其更改为:
@class_report.user = current_user
因此,第一行的问题在于所有报告都已创建并链接到第一个用户(始终(,这就是其他用户没有报告的原因。通过更改为第二行,我们创建一个报告并链接到登录用户 (current_user(,因此报告被创建并分配给登录和创建报告的人。
希望对您有所帮助。