I'm trying to pass a custom upload_to function to my models imageField but I'd like to define the function as a model function....is that possible?

class MyModel(models.Model):
    ...
    image = models.ImageField(upload_to=self.get_image_path)
    ...

    def get_image_path(self, filename):
        ...
        return image_path

Now i know i can't reference it by 'self' since self doesn't exist at that point...is there a way to do this? If not - where is the best place to define that function?

link|improve this question

52% accept rate
Yeah, look at the link that Paulo mentions - it shows it clearly there (no self., define the callable as a function in the models.py) – stevejalim Feb 1 at 11:49
feedback

1 Answer

You can use staticmethod decorator to define the upload_to inside of a class (as a static method). Hovever it has no real benefit over typical solution, which is defining the get_image_path before class definition like here).

class MyModel(models.Model):

    # Need to be defined before the field
    @classmethod       
    def get_image_path(self, filename): 
        # 'self' will work, because Django is explicitly passing it.
        return filename

    image = models.ImageField(upload_to=get_image_path)
link|improve this answer
1  
I see a benefit on code clarity – jperelli Feb 13 at 18:29
@Secator: I tried this in my own code but it's not actually calling the method-- for the file location, I'm getting "Currently: <classmethod object at 0x9bf4944>/o7pDX.jpg" – Colleen Apr 26 at 16:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.