Django Ajax Json Response Appears As Raw Text In Browser
Solution 1:
Ok, I solved it. It turned out it was indeed a jQuery problem. I was referencing two jQuery files in my application. When I removed the second one, and stuck with the one mentioned in the question above, it worked! My credit card details updated as expected on the page (albeit slowly).
Because I am using the pinax framework, it comes with a jquery reference automatically. It's required for the Django debug toolbar at least.This is included in the "base.html" file inside:
{% block script_base %}{% endblock %}
("base.html" is located here: pinax_theme_bootstrap/templates/theme_bootstrap)
Fortunately base.html provides an over-ridable block called "jquery_src", so in my "site_base.html" file in my app, I just entered the following towards the bottom:
{% block jquery_src %}{% endblock %}
This removed the second jQuery library.
I also tried using jQuery v1.11.0 which was thought to be at fault in this SO question I mentioned earlier and it also worked.
Post a Comment for "Django Ajax Json Response Appears As Raw Text In Browser"