Django The 'image' attribute has no file associated with it

后端 未结 7 945
萌比男神i
萌比男神i 2020-12-01 07:09

When a user registers for my app.I receive this error when he reaches the profile page.

The \'image\' attribute has no file associated with it.
Exception Typ         


        
7条回答
  •  旧巷少年郎
    2020-12-01 07:38

    i think your problem in model field, try to put a default image value , like this :

    PRF_image = models.ImageField(upload_to='profile_img', blank=True, null=True , default='profile_img/925667.jpg')
    

提交回复
热议问题