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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T19:35:24+00:00 2026-06-01T19:35:24+00:00

I have this situation: skeleton = { timeline => { data => [] }

  • 0

I have this situation:

skeleton = 
{
        "timeline" => 
        { 
            "data" => []
        }
}

template = 
{
        "A" => "",
        "B" => "",
        "C" => "",
}

From the controller I make a query which returns me an array of hashes:

@cdr = Cdr.select("start, end, clid")

then I iterate over the array and set the “template” hash fields and in the last step I append this hash to an array which belongs to “skeleton” hash:

@cdr.each do |cdr|
        template["A"] = cdr.start
        template["B"] = cdr.end
        template["C"] = cdr.clid
        skeleton["timeline"]["data"] << template
    end

so to expected result is:

skeleton = 
{
        "timeline" => 
        { 
            "data" => [
               {
               "A" => "sample1",
               "B" => "sample2",
               "C" => "sample3",
               },
               {
               "A" => "sample4",
               "B" => "sample5",
               "C" => "sample6",
               }
            ]
        }
}

but the real result I’m getting is:

skeleton = 
{
        "timeline" => 
        { 
            "data" => [
               {
               "A" => "sample1",
               "B" => "sample2",
               "C" => "sample3",
               },
               {
               "A" => "sample1",
               "B" => "sample2",
               "C" => "sample3",
               }
            ]
        }
}

all entries in the array contain same data. Why?

  • 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-01T19:35:25+00:00Added an answer on June 1, 2026 at 7:35 pm

    Try creating a new template array through each cycle through. I don’t think you can change the value of the key while it is being used as a key.

    @cdr.each do |cdr|
        temp_inst = template.clone
        temp_inst["A"] = cdr.start
        temp_inst["B"] = cdr.end
        temp_inst["C"] = cdr.clid
        skeleton["timeline"]["data"] << temp_inst
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this situation where I need to get some data from a webpage
I have this situation: I have a class which keeps track of an array
I have this situation where i have to start an activity from my mainActivity.
i have this situation: i have to build a menu with datasource from the
I have this situation which is rather frustrating... I have some user controls where
I have this situation that when AbstractMethod method is invoked from ImplementClass I want
i have this situation a selecy: SELECT search.id FROM database.search WHERE search.talentnum > '0'
I have this situation where I have a SqlDatasource control and the select query
I have this situation: MySQL - Newbie question: Which are the PK and the
I have this situation Session session = sessionFactory.openSession(); ArrayList<String> city; // in city array

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.