skip to Main Content

How to convert large active record data to json format – laptop get stucked and get hang during data.to_json – export, import in ROR

user_mails = UserMail.all data = {user_mails: user_mails} File.open("demo_data.json", "w") { |f| f.write data.to_json } json_data['user_mails'].each do |data| UserMail.where(data).first_or_create! end When i trying this my system get stuck and get hang then i need to restart my system, i found that…

VIEW QUESTION

Javascript – In my controller's update action, when update_attributes fails due to the validator, I lose the /edit suffix in my URL

Description of my work environment: Rails 4.2.4, Ruby 2.3.1, SQL Server database, javascript on object html views My controller that content an update action: if @cs.update_attributes(cs_params_update) flash[:notice] = "Centro de Saúde #{t(:record_successfully_updated)}" # format.html { render :action => 'edit', :cs_id…

VIEW QUESTION
Back To Top
Search