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

  • Home
  • SEARCH
  • 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 9110127
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T03:12:04+00:00 2026-06-17T03:12:04+00:00

I have a hash that looks like this: extras = {‘facebook’ => ”, ‘twitter’

  • 0

I have a hash that looks like this:

extras = {'facebook' => '', 'twitter' => ''}

And my User attributes are like this:

class User < ActiveRecord::Base
  attr_accessible :facebook, :twitter, #...

I would like to retrieve the data defined in my extras hash in the following fashion (or a better oen – that is the one that came up to my mind)

extras.each do |k,v|
    extras[k] = @user.k
end

Is this even possible ?

  • 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-06-17T03:12:05+00:00Added an answer on June 17, 2026 at 3:12 am

    Yes, you can do that with the .send(:method) or the .try(:method):

    # with this kind of hash:
    extras = {'facebook' => '', 'twitter' => ''}
    

    You can do that to gather the user’s info:

    extras.each_key do |key|
      extras[key] = @user.send(key.to_sym)      
    end
    

    Or with .try(), which is safer: it will not raise an NoMethodError in case of unknown key sent to user:

    extras.each_key do |key|
      extras[key] = @user.try(key.to_sym)
    end
    

    You can do it with a map also:

    extras.each_key{ |k| extras[k] = @user.send(k.to_sym) }
    

    I made a post about this code, you can see it here:
    http://rails.co.nf/?p=31

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

Sidebar

Related Questions

I have @hash that looks like this: [1, {:clid=>1, :nvz=>4, :tip=>IP, :name=>Mark, :record=>some text}]
I have a hash that looks like this h1 = {4c09a0da6071a593f051de32=>[4c09a0da6071a593f051de32, Cafe Bistro, 37.78458803130115,
I have a hash that looks like this: { bmw => { id =>
I have an Array of Hashes in a Hash that looks like this: $VAR1
I have a Ruby hash that looks like this: h = {side1=>[green, Green], side2=>[verde,
I have a nested hash table that looks like this: my %myhash = (
I have a ruby hash that looks like this { stuff_attributes => { 1
I have a hash of arrays that looks like this: { $key, [$val1, $val2]
I have a hash being posted to my Rails app that looks like this:
I have an Address class in C# that looks like this: public class Address

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.