0

i'm using jquery.getJson() to retrieve a json object created by my php script.

it works if i remove the locations array. however i need the locations array to populate a combobox.

my formatted json is below. any suggestions how i can get this to work with one json query instead of 2.

{ "ContactID" : "1", "CustomerID" : "1", "FirstName" : "john", "LastName" : "smith", "Position" : "General Manager", "ContactNumber" : "234523455", "FaxNumber" : "235235234", "LocationSelected" : "1", "Default" : "default", locations : {0 : { "addressID" : "1" , "description" : "Street Address" }}}

i also tried it like this

{ "ContactID" : "1", "CustomerID" : "1", "FirstName" : "john", "LastName" : "smith", "Position" : "General Manager", "ContactNumber" : "234523455", "FaxNumber" : "235235234", "LocationSelected" : "1", "Default" : "default", locations : [{ "addressID" : "1" , "description" : "Street Address" }]}

2 Answers 2

0

It should work like that. Just make sure that you are using correct mime type.

change mime type of output in php

Which JSON content type do I use?

Maybe you should also use quote the locations key

... "locations" : [{ "addressID" : "1" , "description" : "Street Address" }]}

You could also use JSON-functions of PHP to generate the JSON. https://www.php.net/manual/en/book.json.php

Sign up to request clarification or add additional context in comments.

Comments

0

this might solve your problem.. Json retrive and this one too

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.