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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T08:17:17+00:00 2026-06-05T08:17:17+00:00

I have this block of code, to try and debug what’s coming back to

  • 0

I have this block of code, to try and debug what’s coming back to my server:

task = JSON.parse(request.body.read)

puts task.inspect
puts 'description hash: ' 
puts task[:description]

When this block of code runs, I get:

{"completed" => false, "task_type" => 0, "description"=> "second task"}
description hash: 
nil

Is there a different way to access this hash? Because from what I see the inspection shows a description value.

  • 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-05T08:17:18+00:00Added an answer on June 5, 2026 at 8:17 am

    The Problem

    In the example you gave, you are defining a hash key of “description” but looking up the :description key instead, which doesn’t exist. The reason is that the first is a String, and the second is a Symbol.

    "description".class
    => String
    
    :description.class
    => Symbol
    

    The Solution

    Either look up your key with a string, or call #to_s on your subscript if you know your keys are always a String, but your subscript may not be.

    task['description']
    => "second task"
    
    task[:description.to_s]
    => "second task"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this block of code where when I hover (click for purposes of
I have the same block of code repeated with two different variables. This block
I have a code block like this: if(supportsSomeStuff()){ ..... ..... } else { .....
Hello everybody I have a problem with exception. The following code block do this
I have the following code block that fails: this.redisClient.hmset('user:' + userObj.getUserId(), { 'userId' :
If I have a block of code like this: def show @post = Post.find(params[:id])
Suppose you have a simple block of code like this: app.get('/', function(req, res){ res.send('Hello
Let's say that I have a block of code like this: keysPressed = new
Any way I can get this working? I have a block of code: <p><a
I have this code : try { result.FirstName = nodes[myIdx] .Attributes["ows_FirstName"].Value; } catch {

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.