我正在开发一个Django应用程序,在其中一个视图中,我有一个由延迟控制的循环。我的目的是使用表单动态更改自我的模板以来的延迟值。
我在下面给出一个伪代码示例:
temaplate.html
<body>
<form>
# Here I want to input a value, and change the x_seconds value in the view.
</form>
</body>
views.py
def myview():
items = [...] # A list with some items
for item in items:
print item
delay(x_seconds) # Delay after print the item to see the algorithm behaviour
最终目标是在循环迭代列表时动态更改x_seconds的值。