gpt4 book ai didi

scala - 片段可以在提升中接受参数吗?

转载 作者:行者123 更新时间:2023-12-04 00:42:52 24 4
gpt4 key购买 nike

有没有办法将参数传递给片段?

我正在尝试为我的页面编写一个 pluraize 过滤器,它将根据有多少显示“用户”或“用户”一词:

1 user
2 users

它在 Django 中的工作方式称为 filters它们的写法如下:
You have {{ num_messages }} message{{ num_messages|pluralize }}.

所以在这里你可以看到复数函数接受一个整数 num_messages 并输出和适当的字符串 - 空的“”或“s”。

编辑:请注意 num_messages 在这种情况下是一个实际的上下文变量,从 View 传递给模板。

最佳答案

您可以将参数传递给片段,是的。

class MySnippet {
def foo: NodeSeq = {
x = S.attr("myparam") openOr "myparam: Y U NO DEFINED!?"
<p>I got {x}!</p>
}
}

使用:
<lift:MySnippet.foo myparam="3"/>

或者,更新的 Lift 2.3+ 样式:
<div class="lift:MySnippet.foo?myparam=3"/>

关于scala - 片段可以在提升中接受参数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6511665/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com