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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T17:08:20+00:00 2026-06-14T17:08:20+00:00

Cheers! Please, help me to solve the problem – I have a cookies, which

  • 0

Cheers! Please, help me to solve the problem – I have a cookies, which is hash:

> cookies.keys
=> [:wishlist]

Then:

> cookies[:wishlist].keys
=> ["result_count", "results"]

results is an array of Hashie::rash

> cookies[:wishlist].results[0].keys
=> ["wrapper_type", "kind", "artist_id", ...]

cookies is hash, cookies[:wishlist] is Hashie::Rash, results is an array, which contains other Hashie::Rash’ies.
The question is how could I add new data to wishlist without deleting old data (add track to wishlist, for example)?

  • 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-14T17:08:21+00:00Added an answer on June 14, 2026 at 5:08 pm

    Assuming you have this structure:

    cookies = {
      :wishlist => Hashie::Rash.new({
        'resultCount' => 2,
        'results' => [
          Hashie::Rash.new({
            'wrapperType' => 'foo1',
            'kind'        => 'bar1',
            'artistId'    => 'baz1'
          }),
          Hashie::Rash.new({
            'wrapperType' => 'foo2',
            'kind'        => 'bar2',
            'artistId'    => 'baz2'
          })
        ]
      })
    }
    

    You can simply use Array#push to add new items to your results:

    require 'rash'
    
    new_wishlist_item = Hashie::Rash.new({
      'wrapperType' => 'foo3',
      'kind'        => 'bar3',
      'artistId'    => 'baz3'
    })
    
    cookies[:wishlist].results.push( new_wishlist_item )
    cookies[:wishlist].result_count = results.count
    
    cookies[:wishlist].results.each do |r|
      puts r.wrapper_type
    end
    

    Output:

    foo1
    foo2
    foo3
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I hope you can help me with a problem; first, please don't worry about
Can somebody help me please, I have this code : $('childcat').setHTML('Loading...'); I would like
A little help please. I am designing a stateless server that will have the
I am stumped by a problem which i'd assume is a common Jquery occurence,
A bit of help please, consider the bit of code below. public class Widget
I have massive html code, with loooads of images, problem is, every single image
Please advise me. Winforms app, C#. I have a user control (UC) that contains
Can somebody please help me? I want to do a simple style for the
I have a problem with my code. It keeps on crashing when i have
Cheers!I have some doubts about using Unit of Work with Repository. Specially a role

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.