1

It seems that dajax is hi-jacking the ajax requests from django-debug-toolbar

enter image description here

enter image description here

Is there anyway to work around this or a known solution?

4

1 回答 1

2

要解决此问题,DAJAXICE_XMLHTTPREQUEST_JS_IMPORT = False请在 Django 项目设置中进行设置。

默认情况下,Dajaxice 包含XmlHttpRequest.js库:

如果您禁用包含此第三方 javascript 库,则 Django 调试工具栏可以正确加载面板。在排除 XmlHttpRequest.js 库的情况下,我没有注意到 Dajaxice 有任何问题——我相信它只是为了与旧的 IE 浏览器兼容,尽管我不确定。

于 2015-04-20T23:09:29.410 回答