片段可以在 lift 中获取参数吗?

发布于 2024-11-17 08:50:59 字数 554 浏览 0 评论 0原文

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

我正在尝试为我的页面编写一个 pluraize 过滤器,该过滤器将根据页面数量显示单词“user”或“users”:

1 user
2 users

它在 Django 中的工作方式称为 过滤器 它们的写法如下:

You have {{ num_messages }} message{{ num_messages|pluralize }}.

所以在这里你可以看到pluralize 函数采用整数 num_messages 并输出和适当的字符串 - 空“”或“s”。

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

Is there a way in lift to pass parameters to snippets?

I am trying to write a pluraize filter for my page that will display the word "user" or "users" depending on how many there are:

1 user
2 users

The way it works in Django is called filters and they are written as follows:

You have {{ num_messages }} message{{ num_messages|pluralize }}.

So here you can see pluralize function takes an integer num_messages and outputs and appropriate string - either empty "" or "s".

EDIT: Note that the num_messages in this case is an actual context variable, passed down to the template from the view.

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

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

发布评论

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

评论(3

云朵有点甜 2024-11-24 08:50:59

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

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"/>

You can pass parameters to snippets, yes.

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

Use:

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

Or, newer Lift 2.3+ style:

<div class="lift:MySnippet.foo?myparam=3"/>
晨光如昨 2024-11-24 08:50:59
<div id="main" class="cl1 cl2 lift:surround?with=default;at=content">

这也是带有参数的片段调用。

请参阅 Lift 文档:Lift 文档,3.4.1 标记中的代码段

为了指示内容是动态的,标记包含一个片段调用。通常采用 class="someclass someothercss lift:mysnippet" 的形式。如果类属性包含 lift:xxx,则 xxx 将解析为片段。该片段可以采用属性。属性的编码方式类似于 URL 参数...偏移量为 ? (问号),然后名称=值,用 ? 分隔(问号),; (分号)或 & (与号)。名称和值是 URL 编码的。

<div id="main" class="cl1 cl2 lift:surround?with=default;at=content">

This is also a snippet invocation with parameters.

See lift docs: Lift docs, 3.4.1 Snippets in markup

In order to indicate that content is dynamic, the markup contains a snippet invocation. That typically takes the form class="someclass someothercss lift:mysnippet". If a class attribute contains lift:xxx, the xxx will be resolved to a snippet. The snippet may take attributes. Attributes are encoded like URL parameters... offset by a ? (question mark), then name=value, separted by ? (question mark), ; (semicolon) or & (ampersand). name and value are URL encoded.

稀香 2024-11-24 08:50:59

你不能像这样做吗?

<div class="lift:MyClass">
  You have <span class="num_messages"/>.
</div>

你的电梯代码将类似于:

class MyClass {
 def render = "num_messages" #> (num_messages + pluralize("message", num_messages))
}

Can't you do it like this way.

<div class="lift:MyClass">
  You have <span class="num_messages"/>.
</div>

and your lift code would look something like:

class MyClass {
 def render = "num_messages" #> (num_messages + pluralize("message", num_messages))
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文