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

后端 未结 7 943
萌比男神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:59

    The better approach which would not violate DRY is to add a helper method to the model class like:

    @property
    def image_url(self):
        if self.image and hasattr(self.image, 'url'):
            return self.image.url
    

    and use default_if_none template filter to provide default url:

    
    

提交回复
热议问题