我一直在寻找这个答案,但没有一个符合我的期望。因此,在我的模板中,我有一些内容,想要添加按钮(稍后将添加到收藏夹)。单击后,我想从 views.py 调用方法并重定向到其他视图。
我的 views.py
def home(request):
//logic here
request.session['url'] = url
return render(request,'file.html')
def function_to_call(request):
///logic here
url = request.session.get('url')
return render(request,'second_file.html',url=url)
文件.html
<form action="{% url 'function_to_call' %}">
<button id="submit" type="button" value="Click" />
</form>
在我的 urls.py
url(r'^function_to_call/',views.function_to_call,name='function_to_call'),
不幸的是,单击按钮后,没有任何反应
慕雪6442864
jeck猫
相关分类