网址:
https://www.django-rest-framework.org/
支持:
安装:
pip install djangorestframework
pip install markdown # Markdown support for the browsable API.
pip install django-filter # Filtering support
git clone https://github.com/encode/django-rest-framework
注册:
Add 'rest_framework' to your INSTALLED_APPS setting.
INSTALLED_APPS = [
...
'rest_framework',
]
url:
urlpatterns = [
...
path('api-auth/', include('rest_framework.urls'))
]
权限: