我创建了一个名为“BusLocationLinks”的组件,它存储了企业名称以及我创建的地图的坐标。
我有近 50 个具有相同架构 (BusLocationsLinks) 的业务位置,并且只想列出该名称的所有组件组件的元素“业务名称”。我已经尝试了一切,但无法让它们全部显示。有什么建议吗?
这是我当前的代码:
<xsl:template name="BusLocationLinks">
<xsl:for-each select="BusLocationLinks/BusinessName">
<li class="active">
<xsl:value-of select="BusinessName" />
</li>
</xsl:for-each>
</xsl:template>
我的 xml 代码看起来类似于:
<BusLocationLinks>
<BusinessName>Star Property</BusinessName>
</BusLocationLinks>