我在django有问题。 事实上,我会在views.py中的同一个函数中返回许多渲染(request,template.html,{' x':val});我的意思是template.html中的变量x将被更改 具有许多不同的值val,每个值都在给定的时刻。
代码views.py:
def test(request):
test1 = "true"
test2 = "true"
if test1 == "true":
val= 50
return render(request,'template.html', {'x':val})
if test2 == "true":
val= 20
return render(request, 'template.html', {'x':val})
我会在第一次,它在充值页面后返回tempalte.html中的值50并返回值20。
任何人都可以帮助我吗?
答案 0 :(得分:1)