7.3.viewsets配置认证类
在viewset中配置
goods/views.py
from rest_framework.authentication import TokenAuthentication
class GoodsListViewSet(ListModelMixin, GenericViewSet):
...
authentication_classes = (TokenAuthentication,)
Last updated
Was this helpful?