在django中的views.py中的同一函数中返回许多渲染

时间:2016-05-03 07:53:03

标签: python django

我在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。

任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

我认为......您希望异步地在服务器和客户端之间发送或接收信号。

如果这是你想要的,我认为有三种解决方案。

我希望它会有所帮助