问题描述
在Django调试工具栏(版本1.10.1)上单击隐藏"在我的Google Chrome浏览器(版本69.0.3497.100)上不起作用.我正在使用Django 1.11.15,并且可以确认Hide确实可以在Firefox上正常工作.
Clicking on Hide on the Django debug toolbar (version 1.10.1) does not work on my Google Chrome (Version 69.0.3497.100). I'm using Django 1.11.15 and I can confirm that the Hide does indeed work on Firefox.
控制台输出以下内容:
第305行是:
})(djdt.jQuery, djdt);
有人对如何解决此问题或提供可能的解决方法有建议吗?
Anyone have suggestions on how to fix this or provide a possible workaround?
推荐答案
toolbar.js
文件在 1.10.1版.听起来您的浏览器可能已经缓存了toolbar.js
的旧版本.
The toolbar.js
file does not contain })(djdt.jQuery, djdt);
in version 1.10.1. It sounds like your browser may have cached an old version of toolbar.js
.
您可能必须运行collectstatic
,以使用新版本更新静态文件.
You may have to run collectstatic
To update your static files with the new version.
这篇关于Django调试工具栏不会在Chrome上隐藏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!