xslt如何从xml中获取值作为源xml中的链接(href)

时间:2017-08-18 09:02:42

标签: xml xslt xpath xslt-1.0 dita

我在源文件中有以下代码

    <?xml version="1.0" encoding="utf-8"?>
    <?dx form=DxMapR4?>
    <!DOCTYPE map PUBLIC "-//OASIS//DTD DITA Map//EN" "Map.dtd"[]>
    <map id="DocID027853" rev="1" title="AN4696" ditaarch:DITAArchVersion="1.2"
      domains="(topic delay-d)                          (map mapgroup-d)                           (topic indexing-d)                          (map glossref-d)                          (topic hi-d)                           (topic ut-d)                           (topic hazard-d)                          (topic abbrev-d)                          (topic pr-d)                           (topic sw-d)                          (topic ui-d)                         "
      class="- map/map " xmlns:ditaarch="http://dita.oasis-open.org/architecture/2005/">
      <data name="DocType" value="Application note" class="- topic/data "/>
      <data name="AuthorName" value="Laura Vanzago" class="- topic/data "/>
      <topicref type="reference" locktitle="yes" navtitle="@NA" toc="no" class="- map/topicref "
        href="DocID027853_AN4696_short_description.dita"/>
topicref navtitle="SPWF01Sx power-up" class="- map/topicref "
    href="DocID027853_AN4696_6_SPWF01Sxxx_power_up.dita"/>
  <topicref navtitle="Glossary" class="- map/topicref " href="DocID027853_AN4696_7_Glossary.dita"/>
  <topicref navtitle="References" class="- map/topicref "
    href="DocID027853_AN4696_8_References.dita"/>
    <map/>

现在我要解析第一个topicrefi.e中出现的xml文件。&#34; DocID027853_AN4696_short_description.dita&#34;。

在这个文件里面有一个标题标签,我想在我的初始源xml中复制它的值。 我怎样才能做到这一点? 是否可以使用xslt解析其他xml并将其数据复制到我的源xml中?

1 个答案:

答案 0 :(得分:0)

您可以使用document()函数,后跟要选择的元素的Xpath,例如: <xsl:value-of select="document(DocID027853_AN4696_short_description.dita)/thetag"/>