如何将多个变量传递到Webpy中的模板中?

时间:2015-06-21 15:11:53

标签: python html web.py

我想将三个不同的变量传递给我使用Web.py的html模板。

这就是我所拥有的:

class mainScreen:
    def __init__(self):
        self.render=web.template.render('templates/')
    def GET(self):
        return self.render.firstScreen(variable1, variable2, variable3)
    def POST(self):
        pass

在我的html模板中:

$def with (variable1)
$def with (variable2)
$def with (variable3)
<!DOCTYPE html>
<html>
<head>
    <title>variable1</title>
</head>
    <body>
        $variable2
        <h1>$variable3</h1>
    </body>
</html>

然而,在我的html模板中,我在顶部遇到语法错误,我用三个变量中的每一个定义。如何正确传递三个变量?

1 个答案:

答案 0 :(得分:0)

使用like

$def with(product, release, p0,p1,p2,p3, viewby, fromTime, toTime, errormsg, imgurl)