在我的 django 应用程序中,我需要使用电话号码检查用户是否存在。使用电话号码和 OTP 完成登录。我可以通过获取请求来检查用户是否存在
"/api/profiles/<primary key here>/".
但是,如果我要求
"/api/profiles/"
我得到了数据库中所有用户的列表。
如果请求,我需要我的应用程序不返回任何内容
"/api/profiles/"
和用户详细信息(如果要求)
"/api/profiles/<primary key here>/"
我该怎么做呢?
序列化器是基本模型序列化器
class UserProfileSerializer(serializers.ModelSerializer):
class Meta:
model = UserProfile
fields = [
"id",
"is_superuser",
"fullname",
"email",
"is_staff",
"is_active",
# "birthdate",
"phone_number",
"created_at",
"updated_at",
]
网址:
router = routers.DefaultRouter()
router.register(r"profiles", views.UserProfileViewSet)
urlpatterns = [
path("admin", admin.site.urls),
path("restauth/", include("rest_framework.urls", namespace="restauth")),
path("api/", include(router.urls)),
意见:
class UserProfileViewSet(viewsets.ModelViewSet):
queryset = UserProfile.objects.all()
serializer_class = UserProfileSerializer