What I want to do is get a JSON object and an HTML view from a single AJAX call.

My current implementation is the JSON object is hidden in some part of the html and just parsed client side.

Is this good practice? Is there a better way of doing this?

link|improve this question

75% accept rate
You could encode the JSON object into a data attribute on an HTML element – Petah Dec 12 '11 at 2:52
Can you store the view as a string in a key of the json object? That would be easier than having to parse the json out of the html view. – jdi Dec 12 '11 at 2:53
feedback

5 Answers

up vote 4 down vote accepted

Return a JSON object with the HTML inside:

{ "a": "data", "b" : "data", "view" : "<html>...</html>" }
link|improve this answer
feedback

I would return JSON from the AJAX call, and in one of the JSON attributes, store the encoded HTML. Seems quite a bit simpler and stable than trying to parse JSON back out of an HTML response.

link|improve this answer
feedback

One solution to the problem would be to return everything as JSON, with the html embedded in the returned JSON object.

If you have to return them both in the same request (and the code responsible for retrieving the data needs both of them) I find that solution far cleaner than having to parse the returned html to get access to the desired JSON.

{
  "html_payload": "...",
  "object": { ... }
}

If there is no real need for them to be fetched with the same request, I'd restructure the code and get them separately. But it all depends on the circumstances, of course.

link|improve this answer
feedback

Another option (as the option to alter the content type of the original request seems obvious to everyone here) would be to send a custom JSON header.

XXX-JSON-Payload: {a:1, b:2}

And read that header from JS (see getResponseHeader is not a function for a jQuery method of doing that).

link|improve this answer
feedback

You can do it by embedding your JSON into an HTML elements data attribute:

Assuming your ajax call returns this:

<json data-obj='{"my":"json","data":7}'/>
<div>My View</div>

Then the following will load the view, and extract the data from the attribute

<div id="content"></div>
<script>
    $('#content').load('ajax.php', function(data) {
        $(data).siblings('json').remove().data('obj');
    });
</script>

(tested with jQuery v1.7.1)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.