gpt4 book ai didi

python - 尝试从 django 中的 url 读取 pk,但在/处出现错误 NoReverseMatch

转载 作者:行者123 更新时间:2023-12-05 05:31:33 25 4
gpt4 key购买 nike

我试图在我的导航栏(header.html - 包含在我的 base.html 中)中插入一个链接,该链接指向用户配置文件。为了提供当前登录用户的个人资料,我试图通过 url 使用主键。但是,我收到以下错误消息:未找到带有关键字参数“{'pk':''}'的'url'的反向”。尝试了 1 种模式:['profiles/show/(?P[0-9]+)/\Z']

我定义了一个 Profile 模型(如下所示),它与我的 User 模型具有 OneToOne 关系。

我想知道我是否试图在我的 header.html 文件中解析错误的 pk 引用。如果是这样,我认为问题将出现在第 17 行“显示配置文件”上,但也可能出现在我的 View 文件中?我的主键肯定出了问题,但我是 Django 的新手,无法弄清楚是什么问题!

型号:

class Profile(models.Model): # Get access to create profile by default
MALE = 'M'
FEMALE = 'F'
OTHER = 'O'
UNSPECIFIED = "U"
GENDER_CHOICES = [
(MALE, 'Male'),
(FEMALE, 'Female'),
(OTHER, 'Other'),
(UNSPECIFIED, 'Prefer not to say'),
]

user = models.OneToOneField(User, on_delete=models.CASCADE)
phone_number = models.CharField(verbose_name='Mobile Phone Number', max_length=20)
bio = models.TextField(verbose_name='Bio', max_length=500, blank=True, null=True)
date_of_birth = models.DateField(verbose_name='Date of Birth', blank=True, null=True)
first_name = models.CharField(verbose_name='First Name', max_length=255, blank=True, null=True)
surname = models.CharField(verbose_name='Surname', max_length=255, blank=True, null=True)
gender = models.CharField(verbose_name='Gender', max_length=255, choices=GENDER_CHOICES, blank=True, null=True)
emergency_contact_name = models.CharField(verbose_name='Emergency Contact Name', max_length=255, blank=True, null=True)
emergency_contact_number = models.CharField(verbose_name='Emergency Contact Number', max_length=20, blank=True, null=True)
business = models.ForeignKey(BusinessProfile, null=True, blank=True, on_delete=models.SET_NULL) # This may need to change.
creation_date = models.DateTimeField(auto_now_add=True)

def __str__(self):
return str(self.user)

查看:

class ShowProfileView(DetailView):
model = Profile
template_name = 'profiles/user_profile.html'

def get_context_data(self, *args, **kwargs):
context = super(ShowProfileView, self).get_context_data(*args, **kwargs)
page_user = get_object_or_404(Profile, id=self.kwargs['pk'])
context["page_user"] = page_user
return context


urls.py:


app_name='profiles'
urlpatterns=[
path('create/', CreateProfileView.as_view(), name='create_profile'),
path('show/<int:pk>/', ShowProfileView.as_view(), name='show_profile'),
]

header.html:

<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<div class="header" style="background-color:grey;">
{% block logo %}
<a href='{% url "home" %}' class="logo" style="text-align:left;font-size:30px;">.</a>
{% endblock %}
{% if request.user.is_authenticated %}
<div class="header-right" style="text-align:right;" >
{{ user }}
<a href='{% url "accounts:home" %}'>Account</a>
<a href='{% url "profiles:create_profile" %}'>Create Profile</a>
<a href='{% url "profiles:show_profile" pk=profile.id %}'>Show Profile</a>
<a href='{% url "accounts:logout" %}'>Logout</a>
</div>
{% else %}
<div class="header-right" style="text-align:right;" >
<a href='{% url "accounts:login" %}'>Log in</a>
<a href='{% url "accounts:register" %}'>Create Account</a>
</div>
{% endif %}
</div>
</html>

我也试过在我的 html 中调用 pk=object.id 以及其他一些东西。

如果需要任何进一步的信息,请告诉我。非常感谢!

试图获取当前登录用户的配置文件模型实例。收到“NoReverseMatch at/”错误。

最佳答案

如果将 header 添加到所有 项,则意味着所有 View 都应将profile 传递给上下文,而不仅仅是DetailView .

也可能是没有配置文件的情况,例如,如果用户已注销。因此,您应该检查 profile 是否确实有效。但是,您可以获得 request.useruser 的配置文件,因此:

<a href='{% url "profiles:show_profile" pk=user.profile.id %}'>Show Profile</a>

关于python - 尝试从 django 中的 url 读取 pk,但在/处出现错误 NoReverseMatch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74339432/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com