我正在尝试打印出生成的运输标签,我知道我想要多少。鉴于我知道n
,如何为x = 1打印“x
n
”?
我想要做的是拥有一个扩展模板,该模板需要n
并将x
和n
变量提供给我将传递的模板(StringTemplate是一个功能性的 - 类型模板语言,所以这种事情是它的力量。)
很抱歉没有结构,但我只是在框架内思考......
基本上,给定:
$xOfn(n=3)$
我应该
1 of 3
2 of 3
3 of 3
我想使用的真实模板类似于
<div class="label">
<div class="labelInfo">$info$</div>
<div class="item">$x$ of $n$</div>
</div>
我会使用类似$xOfn(n=someInt,template="myTemplate")$
的内容(上面的模板名为myTemplate)
答案 0 :(得分:0)
$objects:{ o | $i$ of $length(objects)$}$