I trying to use jquery ajax to send json data to djangosorry if providing javascript code but it may help solving my problem____________________$("#send").click(function() {events = $('#calendar').fullCalendar('clientEvents'); console.log(events);var filter = new Array();filter[0] = 'start';filter[1] = 'end';filter[2] = 'title';events = JSON.stringify(events, filter, '\t');console.log(events);$.ajax({type: "POST",data: "events",url: <my_url>,});});_____________________on chrome devtool every thing is ok until the last $.ajax()it throw this error
- POST <my_url> 500 (OK)
f.support.ajax.f.ajaxTransport.send jquery-1.7.1.min.js:4 f.extend.ajaxjquery-1.7.1.min.js:4 (anonymous function)<my_url> f.event.dispatchjquery-1.7.1.min.js:3 f.event.add.h.handle.iso why am I getting 500 error, event I tried to use csrf_exempt or disabling the csrf entirely but nothing changedIf any one can figure out what I'm doing wrong please go aheadthanks in advanceAhmad
If that's your real code, you seem to be sending the string "events" as the POST data. Presumably you meant to send the contents of the variable events instead.
--
DR.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/IyNt8bVGtN4J.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
No comments:
Post a Comment