0

我不明白:在我的 django-cms hook-app 中,我想给机会上传一张图片,但我不是强制的。

在模型.py

   image1 = FilerImageField(related_name="image1", null=True, blank=True) 

在我的 html 模板中

  % if instance.image1 and instance.pic_label1 %}

    <a class="fancybox" rel="gallery2" href="{% thumbnail instance.image1 680x453 crop='smart' %}" title="{{ instance.pic_label1 }}"><img src="{% thumbnail instance.image1 148x222  crop='smart' %}" class="images_events"/ ></a>
        <p>{{ instance.pic_label1 }}</p>

 {% endif %}

但是当我运行一切时,会发生此错误:

 Cannot assign None: "ImageText.image1" does not allow null values.
4

0 回答 0