Sending a DELETE request from a form in Django

前端 未结 2 1921
-上瘾入骨i
-上瘾入骨i 2021-01-03 02:32

I am trying to send a DELETE request from a form in Django taking help from jQuery referring following link below;

https://baxeico.wordpress.com/2014/06/25/put-and-d

2条回答
  •  鱼传尺愫
    2021-01-03 03:23

    The problem is with your javascript code. You are submitting the form as a regular POST request and not using the $.ajax javascript code at all.

    You should include jquery in a separate script tag, like this:

    
    

    Then in another script tag you put your code:

    
    
                                     
                  
提交回复
热议问题