如何在Django上编辑其他用户个人资料

时间:2020-10-03 20:25:37

标签: python django

我有两个单独的用户,我希望某些用户能够修改其他用户的个人资料。我现在面临的问题是如何获取用户ID。我对此有2个意见。配置文件视图,即编辑配置文件视图。我试图将整个配置文件html包装为一种形式,但我不确定这是否可行。 大多数示例仅显示如何编辑当前(已登录)用户的个人资料。

指向特定用户个人资料(http://127.0.0.1:8000/dashboard/profile/dfrtgy-ehehh/16)的链接 个人资料页面上有指向编辑个人资料页面的链接。

个人资料html

   <li>
                        <a href="{% url 'editprofile' %}"><img class="nav-items" src="{% static 'images/lab.svg'%}" alt=""><span>Edit profile</span>
                        </a>
                    </li>

views.py

def edit_profile(request):
    if request.method == 'POST':
        profile = Profile.objects.get(pk=pk)
        form = EditProfileForm(request.POST, instance=request.user.profile)

        if form.is_valid():
            form.save()
            return redirect(f'/dashboard/profile/{request.user.profile.slug}/{request.user.pk}')
    else:
       
        form = EditProfileForm(instance=request.user.profile)
        args = {'form': form}
        return render(request, 'core/editprofile.html', args)

def profile(request, slug, pk):
    profil = Profile.objects.get(slug=slug)
    profile = Profile.objects.get(pk=pk)
    context = {'profile': profile, 'profil': profil}
    return render(request, 'dashboard/profile.html', context)

urls.py

urlpatterns = [
    path('', dashboard, name='dashboard'),
    path('profile/', profile, name='profile'),
    path('profile/<str:slug>/<int:pk>', profile, name='profilepk'),
    path('edit_profile/', edit_profile, name='editprofile'),

1 个答案:

答案 0 :(得分:0)

我猜您正在尝试编辑您所使用的个人资料的用户。您可能想尝试获取当前用户(您所在的个人资料所在的用户)的ID,并将其传递给editprofile URL,如下所示:

<li>
<a href="{% url 'editprofile' profile.user.id %}"><img class="nav-items" src="{% static 'images/lab.svg'%}" alt=""><span>Edit profile</span>
</a>
</li>

,然后将其传递给网址:

 path('edit_profile/<int:id>/', edit_profile, name='editprofile'),

在您的个人资料视图上,执行以下操作:

    from django.shortcuts import render, redirect, get_object_or_404

def edit_profile(request,id):
    profile = Profile.objects.get(user_id=id)
    user = get_object_or_404(Profile, pk=id, user=profile.user.id)
    if request.method == 'POST':
       
        form = EditProfileForm(request.POST, instance=profile)

        if form.is_valid():
            form.save()
            return redirect(f'/dashboard/profile/{profile.user.slug}/{profile.user.pk}')
        else:
            return HttpResponse('Could not save')

    else:
       
        form = EditProfileForm(instance=user)
        args = {'form': form}
        return render(request, 'core/editprofile.html', args)

希望这会有所帮助! (: