如何在模板工具包中获取随机数?
我想使用模板工具包获得一个随机数。 它不必特别随机。 我该怎么做?
I want to get a random number using template toolkit. It doesn't have to be particularly random. How do I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
嗯,如果您没有(或无法导入)Slash::Test,您可能会遇到问题。
从 TT 的“vanilla”安装中,您可以简单地使用 Math 插件:
请参阅 模板工具包手册中的此链接了解有关数学插件和各种方法的更多信息。
更新:Math.rand 需要一个参数。 因此,要获取 0 到 1 之间的随机数,请使用:
Hmm, you might have issues if you don't have (or cannot import) Slash::Test.
From a "vanilla" installation of TT, you can simply use the Math plugin:
See this link in the template toolkit manual for more information on the Math plugin and the various methods.
Update: Math.rand requires a parameter. Therefore to get a random number from 0 to 1, use:
我使用此模板工具包代码在网页中显示随机图像:
I use this Template Toolkit code to show a random image in a webpage:
来自Slashcode 上的这篇文章:
From this post at Slashcode: