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?
feedback
|
|
Return a JSON object with the HTML inside:
| |||
|
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. | |||
|
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.
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. | |||
|
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.
And read that header from JS (see getResponseHeader is not a function for a jQuery method of doing that). | ||||
|
feedback
|
|
You can do it by embedding your JSON into an HTML elements data attribute: Assuming your ajax call returns this:
Then the following will load the view, and extract the data from the attribute
(tested with jQuery v1.7.1) | |||
|
feedback
|