ImportError: Could not import 'rest_framework.authentiINSTALLED_APPScation.
BasicAuthentication' for API setting 'DEFAULT_AUTHENTICATION_CLASSES'.
ImportError: No module named 'rest_framework.authentiINSTALLED_APPScation'.
# DRF异常处理内容有误
修改为
# DRF异常处理
REST_FRAMEWORK = {
# 异常处理
'EXCEPTION_HANDLER': 'meiduo_mall.utils.exceptions.exception_handler',
# 配置JWT
'DEFAULT_AUTHENTICATION_CLASSES': (
'rest_framework_jwt.authentication.JSONWebTokenAuthentication',
'rest_framework.authentication.SessionAuthentication',
'rest_framework.authentication.BasicAuthentication',
),
}