带有django的$ .ajax()失败

时间:2015-01-24 23:24:23

标签: jquery ajax django dajaxice dajax

我正在尝试使用jquery ajax从django(开发服务器)获取静态文件(js脚本),但有些东西阻止了$.ajax承诺解析。

这是我的ajax电话:

    $.when(
        $.ajax({dataType: "script", cache: true, url: "/static/ajax_upload/js/jquery.iframe-transport.js"}),
        $.ajax({dataType: "script", cache: true, url: "/static/ajax_upload/js/ajax-upload-widget.js"})
    ).then(function() {
        console.log( "Load was performed." );
        AjaxUploadWidget.autoDiscover();
        $("#level-modal").foundation("reveal", "open");
    }, function () { alert("An error occured, try reloading the page."); });

then函数中没有任何内容被调用,成功或失败。

奇怪的是,与谷歌文件相同的ajax调用工作:

    $.when(
        $.ajax({dataType: "script", cache: true, url: "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"}),
        $.ajax({dataType: "script", cache: true, url: "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"})
    ).then(function() {
        console.log( "Load was performed." );
        AjaxUploadWidget.autoDiscover();
        $("#level-modal").foundation("reveal", "open");
    }, function () { alert("An error occured, try reloading the page."); });

我认为我的回复标题可能有问题,但我获得了200状态,而且我不是Http的专家。

来自django的回复:

HTTP/1.0 200 OK
Date: Sat, 24 Jan 2015 22:57:35 GMT
Server: WSGIServer/0.1 Python/2.7.3
Last-Modified: Sat, 24 Jan 2015 18:45:52 GMT
Content-Length: 9476
Content-Type: application/javascript

来自谷歌的回复:

access-control-allow-origin:*
alternate-protocol:443:quic,p=0.02
cache-control:public, max-age=31536000
content-encoding:gzip
content-length:29524
content-type:text/javascript; charset=UTF-8
date:Sat, 24 Jan 2015 22:57:38 GMT
expires:Sun, 24 Jan 2016 22:57:38 GMT
last-modified:Fri, 19 Dec 2014 15:56:50 GMT
server:sffe
status:200 OK
timing-allow-origin:*
vary:Accept-Encoding
version:HTTP/1.1
x-content-type-options:nosniff
x-xss-protection:1; mode=block

1 个答案:

答案 0 :(得分:0)

经历了我能想到的一切,
我终于找到了问题。
这是dajaxice 。它显然压倒了jquery中的一些东西 在评论之后,我能够得到正常的行为。

我发现通过在settings.py

中添加DAJAXICE_XMLHTTPREQUEST_JS_IMPORT = False,可以解决使用jquery的问题。