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 4123542
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T23:37:28+00:00 2026-05-20T23:37:28+00:00

I have a profile model, and a user has_one profile. Here’s my route: resources

  • 0

I have a profile model, and a user has_one profile.

Here’s my route:

resources :users
resources :profiles

Here’s the show method in my controller:

def show
  @profile = @user.profile
end

Why do I get this error when I try to access the show view:

NoMethodError in ProfilesController#show

undefined method `profile' 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-20T23:37:29+00:00Added an answer on May 20, 2026 at 11:37 pm

    You need to initialize the @user instance variable. You probably want to do something like this:

    def show
      @user = User.find(params[:id])
      @profile = @user.profile
    end
    

    Boring explanation: Instance variables (the ones with @ in the front) are nil by default. They can be de facto “instantiated” by just assigning a non-nil value to it. Here, @user is an instance variable, and it points to nil because it hasn’t been assigned anything. profile is invoked in the context of nil, which doesn’t have a profile method, so you get the no method exception. This is as opposed to local variables, starting with a lower-cased letter, which would in this case have raised a local variable not found exception.

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

Sidebar

Related Questions

I have a user model (sql table) that has_one : profile. profiles have user_id
I have a user model and a profile model. user has_one :profile profile belongs_to
I have a user model that has_one profile, and the profile belongs to the
I have a profile model and a user has_one profile. Also, the profile is
I have a user model which has_one profile. The user model has a name
I have a user and a profile model. One user can have many profiles.
I have two tables: Users and Profiles. A user may have a profile and
I have an Advisor model with has_one relation to Profile model, in my controller
I have two models: User (email:string) Profile (name:string) class User < ActiveRecord::Base has_one :profile
In my CakePHP 1.2.5 app, I have a Profile model that belongsTo a User

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.