我有一個jsp頁面,它將xml字符串參數傳遞給xsl中的模板。如何接收xsl中的原始數據
我在JSP代碼:
<x:transform doc="${transactions}" xslt="${xslTransaction}">
<x:param name="xmlCategory" value="${xmlCategory}"/>
</x:transform>
但是當我打印的xmlCategory
值和查看網頁源代碼。它給了我這樣的:
<categories><category><id>1</id><type>true</type><name>Salary</name><userId>1</userId></category></categories>
相反的:
<categories><category><id>1</id><type>true</type><name>Salary</name><userId>1</userId></category></categories>
我想,正因爲如此,我不能轉換xmlCategory
到節點集進行迭代。
有人可以向我解釋這種情況,以及如何解決它?