Giter VIP home page Giter VIP logo

Comments (9)

andybak avatar andybak commented on June 2, 2024

I didn't mean that the type shows as a Django ImageField.

I meant that it shows as a Django FIleField rather than a sorl ImageField as I would have expected.

from sorl-thumbnail.

sorl avatar sorl commented on June 2, 2024

Sorry this the FieldFile, its bit complicated, read django source... :/

from sorl-thumbnail.

andybak avatar andybak commented on June 2, 2024

Sorry. I don't understand your last comment.

By my understanding if I import a type and create an instance of it then type(object) should return that type.

I'm trying to introspect and access the extra methods of sorl's ImageField but dir(my_field) doesn't show anything other than the base FileField properties and methods.

from sorl-thumbnail.

sorl avatar sorl commented on June 2, 2024
>>> from sorl.thumbnail import ImageField
>>> type(ImageField())
<class 'sorl.thumbnail.fields.ImageField'>

from sorl-thumbnail.

andybak avatar andybak commented on June 2, 2024

How about type on an instance of ImageField as in my original report. Do you get a different result to me?

from sorl-thumbnail.

sorl avatar sorl commented on June 2, 2024

Whats the actual issue here? Yes I get the output as above (which is on the instance).

from sorl-thumbnail.

andybak avatar andybak commented on June 2, 2024
from sorl.thumbnail import ImageField

def MyModel(models.Model):
    image = ImageField(upload_to='path/to')

foo = MyModel()

I do:

type(foo.image)

and get:

<class 'django.db.models.fields.files.FieldFile'>

instead of expected:

<class 'sorl.thumbnail.fields.ImageField'>

If this doesn't happen for you then I'll take another look at my setup as it's obviously just me. :)

from sorl-thumbnail.

sorl avatar sorl commented on June 2, 2024

This case is due to the way django works using descriptors, its not a sorl thumbnail issue, have a look in django source code.

from sorl-thumbnail.

andybak avatar andybak commented on June 2, 2024

Ah. I get it now. Doh!

from sorl-thumbnail.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.