當我有一些樣式表相對包含其他樣式表時遇到了一些XSL處理問題。NSXMLDocument objectByApplyingXSLT與XSL包含
(XML文件可能無關緊要,但爲了完整起見,代碼位於底部)。
鑑於XML文件:
<?xml version="1.0" ?>
<famous-persons>
<persons category="medicine">
<person>
<firstname> Edward </firstname>
<name> Jenner </name>
</person>
</persons>
</famous-persons>
和XSL文件:
<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:include href="included.xsl" />
</xsl:stylesheet>
引用這個樣式表在同一目錄下名爲included.xsl:
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match="/">
<html><head><title>Sorting example</title></head><body>
</body></html>
</xsl:template>
</xsl:stylesheet>
如何我可以做到以下代碼片段:
NSError *lError = nil;
NSXMLDocument *lDocument = [ [ NSXMLDocument alloc ] initWithContentsOfURL:
[ NSURL URLWithString: @"file:///pathto/data.xml" ]
options: 0
error: &lError ];
NSXMLDocument *lResult = [ lDocument objectByApplyingXSLTAtURL: [ NSURL URLWithString: @"file:///pathto/style.xsl" ]
arguments: nil
error: nil ];
不給我的錯誤:
I/O warning : failed to load external entity "included.xsl"
compilation error: element include
xsl:include : unable to load included.xsl
我一直在嘗試各種選項。事先用NSXMLDocumentXInclude加載XML文檔似乎沒有幫助。指定要包含的XSL文件的絕對路徑完美無瑕。
是否有任何方法來進行XSL處理,以便樣式表可以在其本地路徑中包含其他樣式表?