Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个页面,用户在其中输入他们的 ID 或姓名。所以类型是文本。如果他们没有输入任何内容,点击提交会将他们带到一个新页面或同一个页面。这不是登录或身份验证,而只是来自用户的输入,一种身份证明。我需要知道他们的 ID 才能进行投票。我该怎么做呢?
1 制作表格
<form method="POST"><input name="user_id"/></form >
2 在您看来,您获取数据并进行比较
def my_view(request): user_id = request.POST['user_id'] return HttpResponse(User.get(user_id=user_id))