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

The Archive Base Latest Questions

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

I want to encode a Javascript object into a JSON string and I am

  • 0

I want to encode a Javascript object into a JSON string and I am having considerable difficulties.

The Object looks something like this

new_tweets[k]['tweet_id'] = 98745521;
new_tweets[k]['user_id'] = 54875;       
new_tweets[k]['data']['in_reply_to_screen_name'] = "other_user";
new_tweets[k]['data']['text'] = "tweet text";

I want to get this into a JSON string to put it into an ajax request.

{'k':{'tweet_id':98745521,'user_id':54875, 'data':{...}}}

you get the picture. No matter what I do, it just doesn’t work. All the JSON encoders like json2 and such produce

[]

Well, that does not help me. Basically I would like to have something like the php encodejson function.

  • 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-23T23:56:28+00:00Added an answer on May 23, 2026 at 11:56 pm

    Unless the variable k is defined, that’s probably what’s causing your trouble. Something like this will do what you want:

    var new_tweets = { };
    
    new_tweets.k = { };
    
    new_tweets.k.tweet_id = 98745521;
    new_tweets.k.user_id = 54875;
    
    new_tweets.k.data = { };
    
    new_tweets.k.data.in_reply_to_screen_name = 'other_user';
    new_tweets.k.data.text = 'tweet text';
    
    // Will create the JSON string you're looking for.
    var json = JSON.stringify(new_tweets);
    

    You can also do it all at once:

    var new_tweets = {
      k: {
        tweet_id: 98745521,
        user_id: 54875,
        data: {
          in_reply_to_screen_name: 'other_user',
          text: 'tweet_text'
        }
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to encode a javascript function into a JSON object in PHP. This:
I want to encode an image into a string using the base64 module. I've
In Java, I have a String and I want to encode it as a
I want to encode strings as Python do. Python code is this: def EncodeToUTF(inputstr):
I have the following JSON string, encoded with PHP 5.2 json_encode(): {foo:\\.} This JSON
I have an AVI file, which I want to re-encode to fit on a
I want to assign the decimal variable "trans" to the double variable "this.Opacity". decimal
I want to do the following with my javascript codeblock. Handle all current and
Guys/Gals I have made a website but now I want to encode the script
I want to be able to generate private/public RSA keys with javascript only... So

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.