如何从客户端手动调用django中的重定向功能?

时间:2015-06-23 16:51:42

标签: javascript django

我的django网站上的主页正在通过此功能加载:

def homePage(request):
    c = {}
    c.update(csrf(request))
    if not request.user.is_authenticated():
        return HttpResponseRedirect('/accounts/login')
    else:
        return render_to_response('homeTemplate.html',c)

客户从地址线前往网站时发出呼叫。

如何手动调用此功能(通过点击)?

$('#goHome').click(function(){
    //execute homePage
})

1 个答案:

答案 0 :(得分:0)

$('#goHome').click(function(){
    window.location.replace('/');
})


url.py
(r'^$', main_page),