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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:30:40+00:00 2026-06-15T08:30:40+00:00

im sending http request (using ajax) to my sever, and it returns json string

  • 0

im sending http request (using ajax) to my sever, and it returns json string something like :

{

    "neighbors":{
        "data":[
            {
                "id":"7f40cb24-603e-4943-9a0b-e16e024c8bd5",
                "name":"jeff ferry",
                "picture":"url",
                "location":{
                    "data":[
                        {
                            "latitude":"xxx",
                            "longitude":"yyy"
                        }
                    ]
                }
            }
        ]
    }
}

and in html page ajax callback im accessing data like :

success: function (data) {

    var outerObj = data.neighbor.data;    
    var res = ""; 

    for (i in outerObj )          
    {
    if (outerObj .hasOwnProperty(i)) {
        // my outer stuff              
            var innerObj = outerObj.data;
            for (j in innerObj)          
            {
            // my inner stuff
                if (innerObj.hasOwnProperty(j)) {
                }
            }
        }                                            
    }
}

but im wondering if i can access it by some optimized(shorter) way ?

any help appreciable

  • 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-15T08:30:41+00:00Added an answer on June 15, 2026 at 8:30 am

    Maybe you could tighten up the data structure returned from the server? Since 1) the location property is really just a lat/long tuple, and 2) the object around the inner data array is just a redundant wrapper, how about this:

    {
        "neighbors":[
            {
                "id":"7f40cb24-603e-4943-9a0b-e16e024c8bd5",
                "name":"jeff ferry",
                "picture":"url",
                "location":["xxx","yyy"]
            }
        ]
    }
    

    That way, your JavaScript becomes something like:

    success: function (data) {
    
        var res = ""; // what was this for, anyway?
    
        for (var n in data.neighbors) if (data.neighbors.hasOwnProperty(n) {
            var neighbor = data.neighbors[n];
            // actions on the neighbor object here
    
            var location = neighbor.location;
            // actions on the location here
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have multiple network interface(Like WIFI,LAN,LTE dougle).I am sending http request using apache httpclient
I am sending HTTP GET request and receiving data here: ssize_t numBytes = recvfrom(sock,
I am sending password text to the http service request object.like <request><password>pass.text</password></request> now this
I am sending an Ajax Request using jQuery. What happens is that I am
I am sending an AJAX request using POST over X-Domain for a widget we
I have issue with sending AJAX body request using jQuery CORS with custom Content-type.
I am sending an AJAX request using javascript to a servlet. The servlet is
I'm having trouble sending out a simple HTTP request using Actionscript 3's Socket() object.
I have the standard code for sending out http request. Using http.globalAgent. I set
I have this simple code where I am sending http request and reading all

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.