如果你有一個模板重複標籤是這樣的:訪問從重複陣列中的聚合物
<template id="t" repeat="{{i in outputFields}}">
{{i.name}}
<template ref="t" repeat="{{i in i.childOutputFields }}"></template>
</template>
我希望能夠acccess當前的陣列中的模板迭代,所以我可以補充一下像這樣:
<template if="{{i != currentArray[currentArray.length-1] }}">
,</template>
其中currentArray是模板當前正在迭代的數組。
有沒有辦法獲得當前迭代的數組?
你想用ref =「t」的內部模板做什麼? ref =用於引用模板。所以在這裏,你試圖將模板包含在它自己內部。這可能不是目標。 – DocDude
@DocDude是的,那就是目標。總體思路是使用遞歸爲樹數據結構添加節點。聚合物示例中給出了一個通用示例:[示例](https://github.com/Polymer/TemplateBinding/blob/master/examples/how_to/recursive_templates.html) – rlasch