如何在 StringTemplate 部分中使用 $it$ 以外的变量名称?

发布于 2024-10-07 08:08:20 字数 45 浏览 3 评论 0原文

如何在 StringTemplate 部分中使用 $it$ 以外的变量名称?

How can I use variable names other than $it$ in a StringTemplate partial?

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

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

发布评论

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

评论(2

绝情姑娘 2024-10-14 08:08:20

什么是部分?

无论如何,如果模板有一个参数,则 ST 也会设置其值

$a:t()$

for def

t(v) ::= "$v$"

相同

与t() ::= "$it$"

What's a partial?

anyway, if template has one arg the ST sets its value too

$a:t()$

for def

t(v) ::= "$v$"

is same as

t() ::= "$it$"

撩心不撩汉 2024-10-14 08:08:20

$it$

以下是使用默认 $it$ 变量名称呈现的示例。

$["FOO","BAR"]:{<h1>$it
lt;/h1>}$

$x$

在此示例中,变量名为 $x$

$["FOO","BAR"]:{x|<h1>$x
lt;/h1>}$

$it$

Here is an example rendered using the default $it$ variable name.

$["FOO","BAR"]:{<h1>$it
lt;/h1>}$

$x$

In this example, the variable is named $x$

$["FOO","BAR"]:{x|<h1>$x
lt;/h1>}$
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文