我想在我的某个模型字段中使用FilerImageField
并希望用户在管理区域外进行编辑,但是当我尝试加载它时,窗口小部件无法正常工作并且在浏览器控制台中生成的javascript中的get和error:
Uncaught TypeError: Cannot read property 'jQuery' of undefined
在这里:
<script type="text/javascript" id="id_featured_image_javascript">
django.jQuery(document).ready(function(){
var plus = django.jQuery('#add_id_featured_image');
if (plus.length){
plus.remove();
}
// Delete this javascript once loaded to avoid the "add new" link duplicates it
django.jQuery('#id_featured_image_javascript').remove();
});
</script>
我模型中的字段定义如下:
article_image = FilerImageField(db_column="ARTICLE_IMAGE",
verbose_name=_('Article Image'),
related_name='IPP_ARTICLE_IMAGE')
该字段如下所示:
你知道为什么我不能在管理员之外使用这个字段小部件吗?我需要为此设置一些配置吗?
谢谢:)
答案 0 :(得分:0)
首先,在标记{{ form.media }}
和<form>
之后的html文件中添加{% csrf_token %}
。然后按照SteinRobert在Github问题https://github.com/divio/django-cms/issues/6028上的解释,在您的ModelForm
forms.py中扩展媒体类。它完美无缺!谢谢斯坦因!