排序
REST APIs for Django models with less efforts
REST APIs for Django models with less efforts,Written a small utility that helps to create REST APIs for Django models with less efforts. This is for developers using Django REST F...
How to create Public URL in Django Project to access in Other Machines
How to create Public URL in Django Project to access in Other Machines,I'm working Django Project. How to create a Public IP permanently for Localhost(127.0.0.1:8000) IP in Django ...
Learn Django REST Framework Part 16 API Documentation with Swagger and Redoc
Learn Django REST Framework Part 16 API Documentation with Swagger and Redoc,This video talks about how you can document your API endpoints to developer who need to consume it usin...
How to save model object using only foreign keys id in django-rest-framework
How to save model object using only foreign keys id in django-rest-framework,If you want save some data like me in a model which has foreign key field and want to save only by id i...
Learn the Django REST Framework Part 15 – Unit testing
Learn the Django REST Framework Part 15 - Unit testing,This video introduces unit testing in the Django REST Framework. 原文链接:Learn the Django REST Framework Part 15 - Unit tes...
Learn Django REST Framework Part 14 Pagination
Learn Django REST Framework Part 14 Pagination,This video shows you how to carry out pagination in Django REST Framework 原文链接:Learn Django REST Framework Part 14 Pagination
Learn Django REST Framework Part 9 Token Authentication
Learn Django REST Framework Part 9 Token Authentication,This video introduces token authentication using the Django REST Framework. I introduce authentication concepts in Django RE...
Learn Django REST Framework Part 3 Serializers
Learn Django REST Framework Part 3 Serializers, This video introduces Django REST Framework serializers and shows how they can be used for object serialization and deserialization....
Configurando JWT en Django Rest Framework
Configurando JWT en Django Rest Framework,Lo primero que tenemos que hacer es instalar simplejwt: pip install djangorestframework-simplejwt Enter fullscreen mode Exit fullscreen mo...
Build And Deploy A REST API With Django REST Framework. Full 4hr Project Tutorial.
Build And Deploy A REST API With Django REST Framework. Full 4hr Project Tutorial., 原文链接:Build And Deploy A REST API With Django REST Framework. Full 4hr Project Tutorial.
Django: How to show a user liked a post or not in List View without Duplicate Queries.
Django: How to show a user liked a post or not in List View without Duplicate Queries.,Create a model if you don’t have: class PostLike(models.Model): user = models.ForeignKey('us...
Writing Custom Routes in Django RestFrameWork (DRF) Viewsets.
Writing Custom Routes in Django RestFrameWork (DRF) Viewsets.,Django RestFrameWork (DRF) has proven to be the most valuable and helpful library for Django. It's viewset capability ...