Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在多个 XSL 文件中重用一个文本文件,但不确定使用什么标签来引用文件的内容。
换句话说,我想将文本从文件中复制出来,并将其转储到我的 XSL 文件中的某个位置。
我正在使用 XSLT 1.0。
由于您使用的是 XSLT 1.0,因此您可能希望将文本文件的内容作为一个传递xsl:param(参见http://www.w3.org/TR/xslt#variables)。
xsl:param
如果您使用的是 XSLT 2.0,则可以使用unparsed-text().
unparsed-text()