简体   繁体   English

django将“post”识别为“get”

[英]django recognizing “post” as “get”

All my "post" actions are being recognized as "get" I have tried everything I know to fix this but everything seems to be in order. 所有我的“帖子”行动都被认为是“得到”我已经尝试了所有我知道的东西来解决这个问题,但似乎一切都井然有序。 Submitting the form returns "GET" every time. 提交表单每次都会返回“GET”。

urls.py urls.py

from django.conf.urls.defaults import *
urlpatterns = patterns('',
 url(r'^buildit/$', 'main.apps.builder.views.main'),
)

views.py views.py

from django.http import HttpResponse

def main(request):
  return HttpResponse(request.method)

html form HTML表单

<form id="myform">
<input type="checkbox" name="list" value="audio"/> Audio<br />
<input type="checkbox" name="list" value="video"/> Video<br />
<input type="submit" value="Get Custom Library!" /> 
</form>

jquery jQuery的

$(document).ready(function() {

$("#myform").submit(function() {



    serialize = $(this).serialize()

    $.ajax({
    type: 'POST',
    url: '/django/builder/buildit',
    data: serialize,
    crossDomain: false,
    success: function(response){
        alert(response);
    }
});

    return false;

    $(document).ajaxSend(function(event, xhr, settings) {
function getCookie(name) {
    var cookieValue = null;
    if (document.cookie && document.cookie != '') {
        var cookies = document.cookie.split(';');
        for (var i = 0; i < cookies.length; i++) {
            var cookie = jQuery.trim(cookies[i]);
            // Does this cookie string begin with the name we want?
            if (cookie.substring(0, name.length + 1) == (name + '=')) {
                cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                break;
            }
        }
    }
    return cookieValue;
}
function sameOrigin(url) {
    // url could be relative or scheme relative or absolute
    var host = document.location.host; // host + port
    var protocol = document.location.protocol;
    var sr_origin = '//' + host;
    var origin = protocol + sr_origin;
    // Allow absolute or scheme relative URLs to same origin
    return (url == origin || url.slice(0, origin.length + 1) == origin + '/') ||
        (url == sr_origin || url.slice(0, sr_origin.length + 1) == sr_origin + '/') ||
        // or any other URL that isn't scheme relative or absolute i.e relative.
        !(/^(\/\/|http:|https:).*/.test(url));
}
function safeMethod(method) {
    return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method));
}

if (!safeMethod(settings.type) && sameOrigin(settings.url)) {
    xhr.setRequestHeader("X-CSRFToken", getCookie('csrftoken'));
}
});

});
});

might as well put it in your form 不妨把它放在你的表格中

<form id="myform" method="post">

It's hard to read the javascript that is strangely indented. 很难读出奇怪缩进的javascript。 But, why is there code after return false; 但是,为什么return false;后会出现代码return false; without closing the submit callback? 没有关闭提交回调?

Now I'm no expert on Django here...but it seems like Django will override any requests if there is an Append_Slash issue. 现在我不是Django的专家......但是如果有一个Append_Slash问题,Django似乎会覆盖任何请求。 It will redirect the request with the slash appended at the end, at this point, it will lose any POST information and will return the GET method. 它将使用末尾附加的斜杠重定向请求,此时,它将丢失任何POST信息并返回GET方法。 Maybe try putting a / at the end of /django/builder/buildit? 也许尝试在/ django / builder / buildit的末尾放一个/? Shot in the dark... (Would seem this only matters if APPEND_SLASH = false...) 在黑暗中拍摄...(看起来这只有在APPEND_SLASH = false时才有意义......)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM