我正在以下模板中检索位置列表
<template name="explore">
<h2>Explore Places</h2>
<ul>
{{#each locations}}
<h4><a data-toggle="collapse" data-target="#info">{{name}}</a></h4>
<p id="info" class="collapse">{{{information}}}</p>
{{/each}}
</ul>
</template>
每当点击一个位置时,我想通过使用bootstrap崩溃来显示其相应的隐藏信息。但是,单击列表中的任何链接始终会显示列表中第一个项目的信息。
答案 0 :(得分:0)
解决了这个问题,我为每个可折叠标签使用了相同的'id':
-(void)renderer:(id<SCNSceneRenderer>)renderer didApplyAnimationsAtTime:(NSTimeInterval)time{
}