Hi I have a model that looks like this:
The id of class and teacher is 1 to 1.
Class has_many grades
Grade belongs_to class
This is my home page controller:
@grade = Grade.new
respond_to do |format|
format.html # new.html.erb
format.json { render json: @grade }
end
This is my grade controller:
def create
class = Class.find(current_teacher.id)
****@grade = class.grades.build(params[:grade])
respond_to do |format|
if @grade.save
format.html { redirect_to @grade, notice: 'Grade was successfully created.' }
format.json { render json: @grade, status: :created, location: @grade }
else
format.html { render action: "new" }
format.json { render json: @grade.errors, status: :unprocessable_entity }
end
end
end
Currently I am getting this error on the line that has **
unknown attribute: class_id
How to fix it?
Another question is I also have
grade belongs_to student
student belongs_to grade
How do I add this to the create/new method as well?
classis a reserved word in Ruby.Class(with a capital) may work, but you'd better rename toschool_classandSchoolClassor something. – Mischa Feb 1 '12 at 10:21class_id? The error message suggests you don't. – Mischa Feb 1 '12 at 10:23bundle exec rails dband then.schema. This will show you the schema of your tables. – Mischa Feb 1 '12 at 11:40