1. 8h

<xsl:variable name="geoCodeMapping">
  <GeoCodeMapping>
        <cities country="FR">
            <city>Paris</city>
            <geonamesCode>123456</geonamesCode>
        </cities>
        <cities country="UK">
            <city>London</city>
            <geonamesCode>123457</geonamesCode>
        </cities>

   <cities country="FR">
            <city>Lyon</city>
            <geonamesCode>123458</geonamesCode>
        </cities>
        ...
  </GeoCodeMapping>
</xsl:variable>

 

2. 4h30

<xsl:variable name="geoCodeMapping">
  <GeoCodeMapping>
        <cities country="FR">
            <city name="Paris">123456</city>
     <city name="Lyon">123458</city>
        </cities>
        <cities country="UK">
            <city name="London">123456</city>
        </cities>
        ...
  </GeoCodeMapping>
</xsl:variable>

 

3.

<xsl:variable name="geoCodeMapping_FR">
        <cities country="FR">
            <city name="Paris">123456</city>
     <city name="Lyon">123458</city>
        </cities>
</xsl:variable>

<xsl:variable name="geoCodeMapping_UK">
        <cities country="UK">
            <city name="London">123456</city>
        </cities>
</xsl:variable>

相关文章:

  • 2021-07-31
  • 2021-11-13
  • 2021-11-25
  • 2021-12-10
  • 2022-12-23
  • 2021-10-03
  • 2021-12-25
猜你喜欢
  • 2022-02-20
  • 2021-12-02
  • 2022-12-23
  • 2021-12-04
  • 2021-05-23
  • 2021-05-30
  • 2021-09-26
相关资源
相似解决方案