如何在xslt中调用javascript / c#函数传递xpath选择值。 这是我用manualy类型参数调用函数的方法:
<xsl:value-of select="cs:my('some text')"/>
答案 0 :(得分:1)
以下是MSXML 4 SDK 的示例(对于MSXML 6应该是相同的,对于.NEt的XslCompiledTransform非常相似 - 对于后者 {{3 }} 强>)
示例此示例定义带有命名空间的脚本块 包含一个名为xml的函数的用户前缀 node-list作为参数。后来,这个函数,xml(nodelist)中 user namespace,从。的select属性调用。
XML文件(customers.xml)
<?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="script.xsl" ?> <customers> <customer> <name>John Smith</name> <address>123 Elm St.</address> <phone>(123) 456-7890</phone> </customer> <customer> <name>Mary Jones</name> <address>456 Oak Ave.</address> <phone>(156) 789-0123</phone> </customer> </customers>
XSLT文件(script.xsl)
<?xml version='1.0'?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:user="http://mycompany.com/mynamespace"> <msxsl:script language="JScript" implements-prefix="user"> function xml(nodelist) { return nodelist.nextNode().xml; } </msxsl:script> <xsl:template match="/"> <xsl:value-of select="user:xml(.)"/> </xsl:template> </xsl:stylesheet>
格式化输出
<?xml version="1.0" encoding="UTF-16"?><?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="script.xsl" ?>
<customers>
<customer>
<name>John Smith</name>
<address>123 Elm St.</address>
<phone>(123) 456-7890</phone>
</customer>
<customer>
<name>Mary Jones</name>
<address>456 Oak Ave.</address>
<phone>(156) 789-0123</phone>
</customer>
</customers>