0

这是我需要做的。我有一个叫卖的按钮。如果用户已登录,则它会执行其正常步骤并允许用户进行销售。如果用户未登录,我需要重定向到登录页面,并且在用户登录后,将登录用户的正常步骤重定向到带有用户用户名的 ia url 并像这样“username/sell”进行销售。

这是作为经过身份验证的用户可以正常工作的视图

@login_required()
def UserSell(request,username):

    thegigform=GigForm()
    theuser=User.objects.get(username=username)
    if request.method=='POST':
         gigform=GigForm(request.POST,request.FILES)
          if gigform.is_valid():
        gigform.title=gigform.cleaned_data['title']
        gigform.description=gigform.cleaned_data['description']
        gigform.more_info=gigform.cleaned_data['more_info']
        gigform.time_for_completion=gigform.cleaned_data['time_for_completion']
        #need to change this, shouldnt allow any size image to be uploaded
        gigform.gig_image=gigform.cleaned_data['gig_image']
        #commit=False doesnt save to database so that I can add the current user to the gig
        finalgigform=gigform.save(commit=False)
        finalgigform.from_user=theuser
        finalgigform.save()
        return HttpResponseRedirect('done')

else:
    gigform=GigForm()
context=RequestContext(request)
return render_to_response('sell.html',{'theuser':theuser,'thegigform':gigform},context_instance=context)

这是网址

url(r'^(?P<username>\w+)/sell$','gigs.views.UserSell', name='sell'),

然后是模板

<a href="{% url sell user.username %}"><button type="button">Start Selling!</button></a>

现在这很好用,因为我是登录用户,然后当我以匿名用户身份在另一个浏览器上尝试时,我很快看到匿名用户没有用户名,所以我更改了视图、url 和模板以仅使用用户。然后在装饰器重定向到登录页面后尝试登录之前效果很好。登录后的 {{next}} url 是“user/sell”的绝对路径。问题在于,使用使用用户而不是用户名的更新视图会重定向到“AnonymousUser/sell”。我认为这是我的观点的问题,但有人可以帮忙。我需要登录后的重定向是“用户/销售”,就像最近登录的用户一样。

4

1 回答 1

0

我认为您不必要求用户名,因为当此人登录时,系统现在可以访问他们的用户名。

@login_required()
def UserSell(request):
    ..........

    if request.user.is_authenticated():
        return HttpResponseRedirect(reverse('app_name:login'))
    else:
        context=RequestContext(request)
        return render_to_response('sell.html',{'theuser':request.user,'thegigform':gigform},context_instance=context)

如果你想显示用户只需输入“request.user”或“request.user.username”

于 2013-02-05T06:39:02.457 回答