在XRSL上运行时,如何将变量的内容转储到XSLT中的文件中?

时间:2018-08-30 17:19:07

标签: xml xslt yaml xslt-2.0

enter image description here

我想将变量$ final的值输入到yaml文件final.yml中。

该怎么办?
到目前为止,这是我的XSLT-2.0代码:

<xsl:template match="/"> 
  <xsl:variable name="final"> 
    <xsl:apply-templates select="chip" mode="final"/> 
  </xsl:variable> 
  <xsl:result-document href="final.yml"> 
    <xsl:value-of select="$final"/> 
  </xsl:result-document> 
</xsl:template> 

0 个答案:

没有答案