我在django中有問題。 實際上,我將在views.py中的同一個函數中返回許多渲染(request,template.html,{'x':val});我的意思是template.html中的變量x將被更改爲 ,其中val的值各不相同,並且每個值都在給定時刻。返回許多渲染在django views.py中的相同功能
代碼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
任何一個可以幫助我?
在views.py代碼: '高清測試(要求): TEST1 = 「真」如果test1 ==「true」: val = 50 return2 render(request,'template.html',{'x':val}) if test2 ==「true」: val = 20 return render(request,'template.html',{'x':val} ) ' – ibtissem
使用[edit](編輯)(http://stackoverflow.com/posts/36998584/edit)按鈕來添加信息,雖然你的問題還不清楚 – Sayse
我已經添加了views.py的代碼;實際上,我會使用一個進度條在template.html中使用css創建的內容,並且我將從view.py中的函數中添加此進度條的值。這個函數有很多任務要做,他們是長時間運行的任務,所以我會在任務終止後,進度條的值有變化並且增加 – ibtissem