Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7683855
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T18:53:31+00:00 2026-05-31T18:53:31+00:00

Pretty basic Rails question I assume but I can’t figure out the simplicity of

  • 0

Pretty basic Rails question I assume but I can’t figure out the simplicity of Rails.

My simple goal is to have a user submit a form indicating the amount of a donation, and have that donation linked to the user. I’m having trouble with the create action in the donations_controller.rb

I have a User.rb model and a Donation.rb model. The User.rb has_one :donation and Donation.rb belongs_to :user. I am also using Devise so I have the current_user method.

My donation table looks like this

class CreateDonations < ActiveRecord::Migration
  def change
    create_table :donations do |t|
      t.integer :amount
      t.integer :user_id

      t.timestamps
    end
    add_index :donations, [:user_id, :created_at]
  end
end

The _form.html.erb for the donations_controller.rb looks like this

<%= form_for @donation do |f| %>

  <div class="field">
    <%= f.number_field :amount %>
  </div>
  <div class="actions">
    <%= f.submit "Submit" %>
  </div>
<% end %>

The create action in donations_controller.rb looks like this

def create
    @donation  = current_user.donation.build(params[:donation])
    if @donation.save
      flash[:success] = "Donation"
      redirect_to root_path
    else
      render 'home/index'
    end
  end

I’m getting this error message when I submit the form.

NoMethodError in DonationsController#create

undefined method `build' for nil:NilClass
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T18:53:32+00:00Added an answer on May 31, 2026 at 6:53 pm

    The method for building the has_one association is current_user.build_donation(params[:donation])

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Pretty basic programming question, I know PHP have a function for it, but does
So this seems pretty basic but I can't get it to work. I have
this is a pretty basic question but I can't seem to get it right.
I know this is a basic RTFM question but I'm pretty new to rails
I have a pretty basic 'User' model, control & views for a Rails app.
This is probably pretty basic, but I'm trying to figure out how to show
I feel like I'm missing something pretty basic, but I can't seem to figure
Pretty basic question, but can someone please point me to a constructive tutorial on
I have a pretty basic assignment, but am having an issue making my main
My question's pretty basic, but it's been a while. I'm reading in a text

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.