我正在使用当前最新的 jsRender(截至 2013 年 2 月 12 日),并且我正在尝试将模板组件化,以便渲染嵌套对象模型。
我希望能够;
1. 将参数传递给我的模板函数,以便我可以使用不同的参数递归调用它;
<script id="tmplQ" myParam="int?" type="text/x-jquery-tmpl">
<div class="rgRow L{:*myParam*} e"> // wrap this in L2/L3/L4 etc depending on myParam
<div class="td q">{{:q}}</div>
</div>
{{for cq templ="#tmlQ(myParam+1)"}} // increment parameter for recursing
<script>
所以基本上,我想以 0 开头的 myParam 传递,然后模板在向下钻取嵌套的 json 对象模型时调用自身。
[更新]好的,所以再搜索几页,看起来你可以这样做:JsRender:如何将变量传递到嵌套模板中,但我仍然很想在可能的情况下看到这些其他选项;[/更新]
2. 或者失败了,我一直试图简单地将块模板的一部分包含在另一个内联模板中;
{{for cq tmpl="#tmplQ"}} // renders inline template but nothing else
<div class="rgRow L2 e"> // needed to wrap this in L2
{{for cq tmpl="#tmplQ"}} // can't mix inline/block templates
<div class="rgRow L3 e"> // wanted to wrap this in L3
{{for cq tmpl="#tmplQ"/}} // would work if it got here
</div>
{{/for}}
</div>
{{/for}}
使用更简单的库模板;
<script id="tmplQ" type="text/x-jquery-tmpl">
<div class="td q">{{:q}}</div>
</script>
问题是,jsRender 似乎不支持混合内联和块样式。一旦你放入它tmpl=
,{{for}}
它就会忽略嵌套在它下面的所有其他内容。这是一种耻辱。我希望看到它支持两者的混合。它甚至不会引发错误。
我也试图找到这样的语法来简单地调用模板内联。它存在吗?
{{for cq tmpl="#tmplQ"}} // renders inline template but nothing else
<div class="rgRow L2 e"> // wrap in L2
{{for cq}}
{{call tmpl="#tmplQ"}} // call library template????
<span>other content</span>
{{/for}}
</div>
{{/for}}
但它也不起作用。我也试过这些直接调用模板。
{{tmplQ()}}
{{tmpl("#tmplQ")}}
任何人都有线索,或者(鲍里斯)可能会进入下一个修订版?