Django 1.3 - 如何更新 contrib.admin 以使用 jQuery 1.5+ (目前是1.4)
就像标题所说,我试图将我的 jQuery 版本提高到 1.5+(这样我就可以解决 django-markitup AJAX 调用 VS django 的 CSRF 保护的问题)。
查看 contrib.admin.templates.base.html 我发现 JavaScript 是动态包含的,但我不确定如何/在哪里添加它以及如何在不破坏未来的情况下添加它。
Like the title says, Im trying to bump my jQuery version up to 1.5+ (so that I can get past an issue with django-markitup AJAX call VS django's CSRF protection).
Looking at the contrib.admin.templates.base.html I see that JavaScript gets included dynamically, not im not sure how/where to add this and how to do so without breaking things going forward.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认
js
文件位于django/contrib/admin/media/js
(jquery,...)。您还可以更改管理媒体文件位置(Django:提供管理媒体文件)并使用您喜欢的任何版本的
jquery
(最好保持默认的django
文件不变)。Default
js
files are indjango/contrib/admin/media/js
(jquery,...).You can also change the admin media files location (Django: serving ADMIN media files) and use whatever version of
jquery
you like (it's better to keep defaultdjango
files untouched).