> Le 6 sept. 2017 à 10:00, Melvyn Sopacua <[email protected]> a écrit : > > One of the core design issues with DRF is that everything > is based around a queryset. Even if the set is just one item.
This sounds like an easy troll. A lot of code from DRF is based around queryset because DRF can introspect and deduce a lot from them. How is DRF supposed to perform filtering on something that we don’t know (aka not based on a Model) ? Same question for automatic field generation, constraints, pagination and so on. One thing people need to realize is that: 1. It’s simple to use DRF with non model data, including viewsets - as opposed as what I’ve read on this thread. 2. developer has to write way more code because the framework can *not* guess anything from it 3. A lot of code and documentation covers things based on models because models embedded data description in a structured way while we can’t say much about non model things. Regards, Xavier. > Django makes a clear distinction throughout, from model to > view and doesn't combine list and detail views based on the > absence or presence of an identifier. > > > On Wed, Sep 6, 2017 at 9:06 AM, Rakhee Menon <[email protected]> wrote: >> >> >> Thanks a lot James :-) >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To post to this group, send email to [email protected]. >> Visit this group at https://groups.google.com/group/django-users. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/django-users/c13da61b-eebc-49e3-a85a-88482541c1d8%40googlegroups.com. >> >> For more options, visit https://groups.google.com/d/optout. > > > > -- > Melvyn Sopacua > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CA%2Bgw1GUuk3kLZ90w5HX9jxVQQJD%3DnEMRh%3DoozcP-BcQPH74P0w%40mail.gmail.com. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/4232FEBF-EF70-4D4B-842D-32DB346D9F7B%40linovia.com. For more options, visit https://groups.google.com/d/optout.

