我的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
})
答案 0 :(得分:0)
$('#goHome').click(function(){
window.location.replace('/');
})
url.py
(r'^$', main_page),