gpt4 book ai didi

xml - XSLT document() 在 WebKit 浏览器中的使用

转载 作者:数据小太阳 更新时间:2023-10-29 02:14:25 24 4
gpt4 key购买 nike

尝试在 XSL 样式表中包含和访问多个 XML 文档时遇到问题。我将文档节点分配为变量,然后尝试在我的 xsl:template 中访问它们,类似于:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 
<xsl:output method="xml" omit-xml-declaration="yes" />

<xsl:variable name="doc1" select="document('test.xml')" />

<xsl:template match="/">
<div>
<span id="id_total">
<xsl:value-of select="count($doc1//Root)"/>
</span>
</div>
</xsl:template>

</xsl:stylesheet>

我在使用 IE 和 Firefox 时得到正确的计数,但是任何 WebKit 浏览器(Safari、Chrome)给我的计数都是 0。有什么想法吗?

最佳答案

Chrome 有一个 cross-origin-policy防止包含本地文件。文档函数只能在本地引用自身:

<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="pitarget.xml"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml"
>
<xsl:variable name="gal" select="'howdy'"/>
<?var gal?><!--howdy-->
<?echo gal?>
<?html5 ?>

<xsl:output method="html" encoding="utf-8" version="" indent="yes" standalone="no" media-type="text/html" omit-xml-declaration="no" doctype-system="about:legacy-compat" />

<xsl:template match="xsl:stylesheet">
<xsl:apply-templates select="processing-instruction()"/>
</xsl:template>

<xsl:template match="/">
<xsl:value-of select="processing-instruction('html5')"/>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>


<xsl:template match="processing-instruction('echo')">
<xsl:value-of select="//xsl:variable/@select[../@name=current()]"/>
<xsl:value-of select="count(document('pitarget.xml')//*) - 1"/>
</xsl:template>

<xsl:template match="processing-instruction('var')">
<xsl:processing-instruction name="{.}">
<xsl:value-of select="."/>
<xsl:value-of select="./following-sibling::node()"/>
</xsl:processing-instruction>
</xsl:template>

</xsl:stylesheet>

关于xml - XSLT document() 在 WebKit 浏览器中的使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1868699/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com