5 ms·
I use DRF with Angular at work, so I'm interested in seeing where this series goes. Tangentially, I can't imagine using Django without DRF. It makes setting up
by wylee 11y ago
I use DRF with Angular at work, so I'm interested in seeing where this series goes.
Tangentially, I can't imagine using Django without DRF. It makes setting up RESTful(ish) APIs so easy. Even if you don't care much about the RESTful aspects, it provides a much nicer way to organize your code than default Django IMO. I especially like how serialization works versus Django forms.
- collyw 11y agoI found the best thing about DRF was how well it conforms to Django conventions. Model serializers work very like model forms and the class based views are almost the same.