我很难为以下xml创建xls转换文件:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="test.xsl"?>
<ExportedData xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Header>
<StartDate>2015-02-02T00:00:00</StartDate>
<EndDate>2015-03-04T23:59:00</EndDate>
<RecordCount>4</RecordCount>
<Client />
<DocumentCount>0</DocumentCount>
</Header>
<Applicants>
<Applicant>
<ApplicantId>2176</ApplicantId>
<ModuleTypeId>1</ModuleTypeId>
<ApplicantInfo>
<Applications>
<Application>
<ApplicationId>6177</ApplicationId>
<Fields>
<Field>
<FieldName>Action Status</FieldName>
<FieldText>Submitted</FieldText>
</Field>
<Field>
<FieldName>BGCheck Result</FieldName>
<FieldText />
</Field>
<Field>
<FieldName>Date Hired</FieldName>
<FieldText />
</Field>
<Field>
<FieldName>Location Code</FieldName>
<FieldText>ManNY</FieldText>
</Field>
</Fields>
</Application>
</Applications>
</ApplicantInfo>
<ApplicantActionDocsInfo />
<ApplicantFormsInfo />
<ApplicantActionsInfo />
</Applicant>
显然xml文件还有更多(申请者更多)。我一直在尝试使用这个资源:http://www.w3schools.com/xsl/xsl_transformation.asp我理解,但是当我尝试将它应用到我的xml时,它并没有完全解决。我试图从一些非常简单的东西开始,但我没有得到正确的输出。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>Applicants Info</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>ApplicantId</th>
</tr>
<xsl:for-each select="ExportedData/Applicants/Applicant">
<tr>
<td><xsl:value-of select="ApplicantId"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
同样,这只是我尝试过的一个简单的测试用例(它只显示了申请人ID)。我的最终目标是基本上显示xml中显示的所有信息。我做错了什么?
答案 0 :(得分:2)
更改此内容时,您将获得ApplicantId
的值
<xsl:for-each select="Applicants/Applicant">
到
<xsl:for-each select="//Applicants/Applicant">
或
<xsl:for-each select="ExportedData/Applicants/Applicant">
或模板的匹配模式:
<xsl:template match="/">
到
<xsl:template match="ExportedData">
目前,您的模板与输入XML的根级匹配,Applicants
不是输入的第一个元素。
答案 1 :(得分:2)
<xsl:template match="/">
将您置于根(文档)节点的上下文中。从这个背景来看,
<xsl:for-each select="Applicants/Applicant">
不选择任何内容,因为Applicants
不是根节点的子节点。请尝试改为:
<xsl:for-each select="ExportedData/Applicants/Applicant">
答案 2 :(得分:1)
尝试编写模板而不是for-each选择器。见下面的评论。
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<!-- match root - build html elements -->
<xsl:template match="/">
<html>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="ExportedData">
<xsl:apply-templates/>
</xsl:template>
<!-- Do nothing for the header -->
<xsl:template match="Header"/>
<!-- Build table for applicants -->
<xsl:template match="Applicants">
<h2>Applicants Info</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>ApplicantId</th>
</tr>
<xsl:apply-templates/>
</table>
</xsl:template>
<!-- for each applicant create a table row -->
<xsl:template match="Applicant">
<tr>
<xsl:apply-templates/>
</tr>
</xsl:template>
<!-- for each Applicant/ApplicantId generate table cell -->
<xsl:template match="ApplicantId">
<td>
<xsl:apply-templates/>
</td>
</xsl:template>
<!-- you probably will want to add more stuff to the table, use templates to do so.-->
<xsl:template match="ModuleTypeId | ApplicantInfo | ApplicantActionDocsInfo | ApplicantFormsInfo | ApplicantActionsInfo"/>
</xsl:stylesheet>