Web.py 模板错误:'sum'不存在

发布于 2024-08-10 22:30:41 字数 275 浏览 2 评论 0原文

我在 web.py 模板器模板中使用内置的“sum”函数,但出现以下错误:

global name 'sum' is not defined

源代码如下:

$if profs:
   $for prof in profs:
      $sum([1, 2, 3])

我可以在终端中的 Python REPL 中很好地使用“sum”。

可能是什么问题?

谢谢, 雅各布

I use the built in 'sum' function in a web.py templator template and I get the following error:

global name 'sum' is not defined

Source code is below:

$if profs:
   $for prof in profs:
      $sum([1, 2, 3])

I can use 'sum' just fine at a Python REPL in the terminal.

What could be the issue?

Thanks,
Jacob

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不可一世的女人 2024-08-17 22:30:41

在字典中添加函数并作为全局参数传递给渲染:

render = web.template.render('templates/', globals={'sum': sum})

然后在模板中您可以使用它:

$def with (numbers)

<h1>Numbers add to $sum(numbers)</h1>

Add the functions in a dict and pass as the globals argument to render:

render = web.template.render('templates/', globals={'sum': sum})

Then in your template you can just use it:

$def with (numbers)

<h1>Numbers add to $sum(numbers)</h1>
も星光 2024-08-17 22:30:41

并非所有 python 代码都可用模板表示法,请尝试如下所示:

$if profs:
   $for prof in profs:
      $code:
         mysum = sum([1, 2, 3])
      $mysum

Not all python code is available in template notation, try something like this:

$if profs:
   $for prof in profs:
      $code:
         mysum = sum([1, 2, 3])
      $mysum
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文