在Django中使用ID查找用户名

时间:2019-02-25 19:53:37

标签: python django

我想使用一个ID在我的数据库中搜索属于该ID的用户名。

我有一个url.py设置,可以通过url变量提供ID,然后将其传递到将其传递到模板的views.py上

目前,我有以下内容:

models.py:

from django.contrib.auth.models import AbstractUser
from django.db import models

class CustomUser(AbstractUser):
     pass

def __str__(self):
    return self.email

docfile = models.FileField(upload_to='static/users/',)

views.py

def ProfileView(request, id):
    return render(request, 'pages/profile.html', {"id":id})

urls.py

path('profile/<int:id>', views.ProfileView, name='Profile')

profile.html

<div class="mainusers">
  <div class = "userLine">
   <p>{{ id.username }}</p> <!-- I know this wouldn't work, It's just a place holder at the moment -->
 <center><p></p><p class="mainfont"><u>{{ id.username }}</u><p></center>
  <div class="circular--portrait">
    <img id="ProfileBox" src="../static/users/{{ id.username }}.gif" onerror="this.onerror=null;this.src='static/users/default.gif';"/>
  </div>
  <center><p><br></br> Date Joined: {{id.date_joined}}</p></center>
  {% if id.is_superuser %}
    <center><p>Developer</p></center>
  {% endif %}
  <div class="wrapper">
    <button class="logout" onclick="window.location.href='{% url 'logout' %}'">Logout</button>
    <button class="logout" onclick="window.location.href='/invgen'">Generate Invite Code</button>
  </div>

2 个答案:

答案 0 :(得分:1)

您需要为此User获取id对象:

from django.contrib.auth.models import User
from django.shortcuts import get_object_or_404

def profile_view(request, id):
    user = get_object_or_404(User, pk=id)
    return render(request, 'pages/profile.html', {'id':id, 'user': user})

然后我们可以像这样渲染它:

<img id="ProfileBox" src="../static/users/{{ user.username }}.gif" onerror="this.onerror=null;this.src='static/users/default.gif';"/>

如果您使用静态文件,则最好使用{% static ... %}模板标签,如documentation中所述。

  

注意:根据PEP 8,使用小写字母字符和下划线作为函数分隔符,因此最好将ProfileView重命名为profile_view ,就像我在这里所做的一样。

答案 1 :(得分:1)

您可以使用请求对象查找已登录的用户,即request.user