我有一个HTML页面,其中包含一些我正在尝试使用XSLT 1.0解析的Javascript。我想修改Javascript中的URL以使路径绝对而不是相对。
Javascript代码看起来大致如下:
<html>
<head>
<script>
function login() {
window.location = '{@myBase}/myloginpage';
}
</script>
</head>
<body>
...
</body>
</html>
我希望将'{@myBase}'替换为我的域名。我觉得我非常偏僻。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:proxy="java:senselogic.sitevision.portlet.proxy.web.ProxyFunctions"
extension-element-prefixes="proxy">
<xsl:import href="template.xsl"/>
<xsl:template match="//script/text()">
<xsl:variable name="mypath">
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text"><xsl:value-of select="{@myBase}"/></xsl:with-param>
<xsl:with-param name="replace">{@myBase}</xsl:with-param>
<xsl:with-param name="by">http://www.mydomain.com</xsl:with-param>
</xsl:call-template>
</xsl:variable>
</xsl:template>
<xsl:template name="string-replace-all">
<xsl:param name="text" />
<xsl:param name="replace" />
<xsl:param name="by" />
<xsl:choose>
<xsl:when test="contains($text, $replace)">
<xsl:value-of select="substring-before($text,$replace)" />
<xsl:value-of select="$by" />
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text"
select="substring-after($text,$replace)" />
<xsl:with-param name="replace" select="$replace" />
<xsl:with-param name="by" select="$by" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
答案 0 :(得分:2)
实际上,你离我不远。
首先,您要定义一个变量<xsl:variable name="mypath">
来保存调用模板的结果,但实际上并没有对它做任何事情。我认为你根本不需要将它包装在变量声明中。
其次,您没有将正确的值传递给 text 参数。而不是这样做
<xsl:with-param name="text"><xsl:value-of select="{@myBase}"/></xsl:with-param>
这样做
<xsl:with-param name="text"><xsl:value-of select="."/></xsl:with-param>
或者更好的是,这个:
<xsl:with-param name="text" select="."/>
试试这个XSLT
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:proxy="java:senselogic.sitevision.portlet.proxy.web.ProxyFunctions" extension-element-prefixes="proxy">
<xsl:param name="domain" select="'http://www.mydomain.com'"/>
<xsl:template match="//script/text()">
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text" select="."/>
<xsl:with-param name="replace" select="'{@myBase}'" />
<xsl:with-param name="by" select="$domain"/>
</xsl:call-template>
</xsl:template>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template name="string-replace-all">
<xsl:param name="text"/>
<xsl:param name="replace"/>
<xsl:param name="by"/>
<xsl:choose>
<xsl:when test="contains($text, $replace)">
<xsl:value-of select="substring-before($text,$replace)"/>
<xsl:value-of select="$by"/>
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text" select="substring-after($text,$replace)"/>
<xsl:with-param name="replace" select="$replace"/>
<xsl:with-param name="by" select="$by"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
(请注意,我还将您的域设置为参数)
当应用于您的XHTML时,输出以下内容
<html>
<head>
<META http-equiv="Content-Type" content="text/html">
<script>
function login() {
window.location = 'http://www.mydomain.com/myloginpage';
}
</script></head>
<body>
...
</body>
</html>