其他分享
首页 > 其他分享> > django-rest-framework

django-rest-framework

作者:互联网

网址:

https://www.django-rest-framework.org/

支持:

安装:

注册:

  Add 'rest_framework' to your INSTALLED_APPS setting.

  INSTALLED_APPS = [
   ...
   'rest_framework',
  ]

url:

urlpatterns = [
...
path('api-auth/', include('rest_framework.urls'))
]

权限:

 

标签:rest,INSTALLED,framework,install,pip,django
来源: https://www.cnblogs.com/beichengshiqiao/p/16142327.html