Re: Django and Ajax

2021-01-17 Thread carlos
this is a example Django and Ajax maybe help you https://simpleisbetterthancomplex.com/tutorial/2016/08/29/how-to-work-with-ajax-request-with-django.html On Sun, Jan 17, 2021 at 5:18 PM www.forum-gh.com wrote: > Hello, > Please I need your help on this, I am an absolute beginner, how >

Re: Django and AJAX

2019-05-10 Thread DEEPAK RAGHAV
Mention not😎 On Sat, May 11, 2019 at 12:16 AM Karan Mittal wrote: > Thanks Deepak it was really helpful > > On Fri, May 10, 2019 at 11:57 PM DEEPAK RAGHAV < > deepaksinghragh...@gmail.com> wrote: > >> >> https://steemit.com/utopian-io/@ajmaln/part-1-creating-a-simple-chat-app-with-djangorestfra

Re: Django and AJAX

2019-05-10 Thread Karan Mittal
Thanks Deepak it was really helpful On Fri, May 10, 2019 at 11:57 PM DEEPAK RAGHAV wrote: > > https://steemit.com/utopian-io/@ajmaln/part-1-creating-a-simple-chat-app-with-djangorestframework > > On Fri, May 10, 2019 at 11:27 PM Karan Mittal > wrote: > >> Hey Guys can someone tell me some nice

Re: Django and AJAX

2019-05-10 Thread DEEPAK RAGHAV
https://steemit.com/utopian-io/@ajmaln/part-1-creating-a-simple-chat-app-with-djangorestframework On Fri, May 10, 2019 at 11:27 PM Karan Mittal wrote: > Hey Guys can someone tell me some nice AJAX Django tutorials? I searched a > lot and didn't found anything that was actually good. > Thanks in

Re: Django and Ajax, Django not returning posted data.

2014-11-12 Thread Collin Anderson
Hello, In your first method (non-json), try console.log(data) in the success function. When you tried json, was there any other error in the console? What about the network tab? Collin -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsu

Re: Django and Ajax, Django not returning posted data.

2014-11-05 Thread G Z
updated my ajax to the following but for somereason it just says something went wrong $(document).ready(function() { $('#get_info').submit(function() { $.ajax({ type: "POST", url: "/vmstatus/", dataType: "json", async:

Re: Django and Ajax, Django not returning posted data.

2014-11-05 Thread G Z
Another note is I try to return posted data and out put it to the html for testing and that doesn't get returned either. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an e

Re: Django and AJAX jQuery

2014-09-01 Thread Martin Spasov
Perfect, thank you On 9/1/14, Collin Anderson wrote: > If the url name is not guessable (for example, it includes a secure random > string, like django's forgot password url), that should provide enough > security. > > Though you can always pass in the csrf token using javascript: > https://docs.

Re: Django and AJAX jQuery

2014-09-01 Thread Collin Anderson
If the url name is not guessable (for example, it includes a secure random string, like django's forgot password url), that should provide enough security. Though you can always pass in the csrf token using javascript: https://docs.djangoproject.com/en/dev/ref/contrib/csrf/#ajax -- You receive

Re: Django and Ajax (mootools/clientcide) Fupdate encoding problems

2009-04-28 Thread Bartek SQ9MEV
Karen Tracey pisze: > > Sharing with the list what, exactly, the 'results far from expected' > look like would be a start. I assume from the subject that you are > getting some sort of encoding exception, but without the traceback it is > a bit difficult to say where exactly the problem is. Ind

Re: Django and Ajax (mootools/clientcide) Fupdate encoding problems

2009-04-28 Thread Karen Tracey
2009/4/28 Bartek SQ9MEV > > What would be the best idea to handle this problem? Where does it > originate? > Any idea where to start investigation? > > Sharing with the list what, exactly, the 'results far from expected' look like would be a start. I assume from the subject that you are getting

Re: Django and Ajax

2006-10-10 Thread Waylan Limberg
On 10/10/06, Nicolas Steinmetz <[EMAIL PROTECTED]> wrote: > > puyuus a écrit : > > hello again! > > there are 2 weeks since i started using Django and I can say that i > > done a lot of things easier then in PHP. > > just one problem for today what can you tell me about the > > combination bet

Re: Django and Ajax

2006-10-10 Thread Nicolas Steinmetz
puyuus a écrit : > hello again! > there are 2 weeks since i started using Django and I can say that i > done a lot of things easier then in PHP. > just one problem for today what can you tell me about the > combination between Django and Ajax? did somebody used Ajax with > Django; if yes... ho