दोस्तों यह मेरी DB संरचना है। AccountGrade.rb को इसके अकाउंट और ग्रेड मॉडल के लिए एक जॉइन टेबल बनाएं
class AccountGrade < ActiveRecord::Base
belongs_to :account
belongs_to :grade
attr_accessor :grade
attr_accessor :section
end
मेरा खाता
class Account < ActiveRecord::Base
has_many :grades, :through => :account_grades
has_many :account_grades
belongs_to :user
validates :school_name,:line_1,:city,:state,:country,:pincode,:phone_number, :presence => true
validates :pincode,:phone_number,numericality: { only_integer: true }
end
मेरा ग्रेड.आरबी मॉडल
class Grade < ActiveRecord::Base
has_many :accounts, :through => :account_grades
has_many :account_grades
attr_accessor :account_grades
end
मेरा ग्रेड_कंट्रोलर.आरबी
class GradesController < ApplicationController
def index
@grades = Grade.all
render json: {
Grades:@grades
}.to_json
end
def add_class_sections
# unless params[:section]
@account_grades = AccountGrade.new class_sections_params
puts "Grades are #{@account_grades}"
@grades.each do |grade|
@account_grades = grade
puts grade
puts @account_grades
end
# end #unless ends here
end #function add_class_sections ends here
private
def class_sections_params
params.permit!
# params.require(:gardes).permit(:section)#, :email, :password, :salt, :encrypted_password)
end
end #class ends here
मुझे अपने टर्मिनल ट्रेस में नीचे त्रुटि मिल रही है।
Started POST "/add_classes?grade_id[0]=1§ion[0]=2&grade_id[1]=2§ion[1]=1&grade_id[2]=3§ion[2]=1" for 127.0.0.1 at 2015-11-17 12:43:47 +0530
ActiveRecord::SchemaMigration Load (0.1ms) SELECT `schema_migrations`.* FROM `schema_migrations`
Processing by GradesController#add_class_sections as */*
Parameters: {"grade_id"=>{"0"=>"1", "1"=>"2", "2"=>"3"}, "section"=>{"0"=>"2", "1"=>"1", "2"=>"1"}}
Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.8ms)
ActiveRecord::UnknownAttributeError (unknown attribute 'controller' for AccountGrade.):
app/controllers/grades_controller.rb:11:in `add_class_sections'
Rendered /home/anjan/.rvm/gems/ruby-2.2.1/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.0ms)
Rendered /home/anjan/.rvm/gems/ruby-2.2.1/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
Rendered /home/anjan/.rvm/gems/ruby-2.2.1/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
Rendered /home/anjan/.rvm/gems/ruby-2.2.1/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (24.8ms)
1
Anjan
17 नवम्बर 2015, 11:07
1 उत्तर
यही मैं हासिल करना चाहता था। फिर से फैक्टरिंग या नीचे दिए गए कोड को बेहतर बनाने के किसी भी सुझाव का स्वागत है।
class GradesController < ApplicationController
before_filter :authenticate, only: [:create]
def index
@grades = Grade.all
render json: @grades.to_json
end
def create
@section_name_counter = 0
@section_names=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S",
"T","U","V","W","X","Y","Z"]
@account_grades = AccountGrade.new #sections_params
@account_grades.grade_id = params[:grade_id]
@account_grades.account_id = params[:account_id]
@account_grades.save!
while @section_name_counter < params[:section].to_i do
@section = Section.new
@section.account_grade_id = @account_grades.id
@section.name = @section_names[@section_name_counter]
@section.save!
@section_name_counter += 1
end
render json: @account_grades if @section.save
end
private
def sections_params
params.require(:grade_id).permit(:section,:account_id)
end
end
0
Anjan
17 नवम्बर 2015, 12:58
संबंधित सवाल
नए सवाल
ruby-on-rails
रूबी ऑन रेल्स रूबी में लिखा गया एक ओपन सोर्स फुल-स्टैक वेब एप्लिकेशन फ्रेमवर्क है। यह लोकप्रिय एमवीसी फ्रेमवर्क मॉडल का अनुसरण करता है और इसे "कॉन्फिगरेशन ओवर कॉन्फिगरेशन" अप्रोच डेवलपमेंट के दृष्टिकोण के लिए जाना जाता है।