Concatenating xml files

前端 未结 4 1943
日久生厌
日久生厌 2021-01-05 14:48

I have several xml files, the names of which are stored in another xml file.

I want to use xsl to produce a summary of the combination of the xml files. I remember

4条回答
  •  臣服心动
    2021-01-05 15:18

    Have a look at the document() function documentation.

    You can use document() to load further XML documents during the transformation process. They are loaded as node sets. That means you would initially feed the XML that contains the file names to load to the XSLT, and take it from there:

    
    

提交回复
热议问题