这是我的xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="test.xsl"?>
<products>
<product_id value=" 1 ">
<tab_id value=" 51 ">
<tab_name value=" test1 "/>
<status value=" 2 "/>
<log value=" 5748 , 5749 , 128 "/>
<born_from value=" 1980-08-01 , 1989-02-01 "/>
<born_to value=" 1985-08-01 , 1998-02-01 "/>
<sex value=" 2 , 1 "/>
<link value=" www.google.com "/>
</tab_id>
</product_id>
<product_id value=" 2 ">
<tab_id value=" 52 ">
<tab_name value=" test2 "/>
<status value=" 3 "/>
<log value=" 458 , 912 , 333 "/>
<registration value=" 2013-01-01 "/>
<born_from value=" 1995-01-25 , 1993-08-03 "/>
<born_to value=" 2000-01-25 , 2002-10-25 "/>
<sex value=" 1 , 1 "/>
<link value=" www.yahoo.com "/>
<label value=" open "/>
</tab_id>
</product_id>
<product_id value=" 3 ">
<tab_id value=" 54 ">
<tab_name value=" test3 "/>
<status value=" start "/>
<venue value=" US "/>
<born_from value=" 2000-01-01 , 2002-02-01 "/>
<born_to value=" 2005-01-01 , 2003-01-01 "/>
<sex value=" 1 , 2 "/>
<link value=" www.facebook.com "/>
</tab_id>
</product_id>
</products>
我已经编写了这个 XSLT 代码来显示产品的所有数据,其中my_date
变量将与 Born_from 和 Born_to 的日期进行比较,并给出产品 1 和 2 的输出数据
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="yes"/>
<xsl:param name="my_date" select="'1992-01-01'"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/products" priority="1">
<html>
<body>
<table border="1">
<tr>
<th>Product ID</th>
<th colspan="2">Product DATA</th>
</tr>
<xsl:apply-templates select="product_id/tab_id/born_from[@value > $my_date] | product_id/tab_id/born_to[@value < $my_date]"/>
</table>
</body>
</html>
</xsl:template>
<xsl:template match="product_id/tab_id">
<tr>
<td>
<xsl:value-of select="product_id"/>
</td>
<td><xsl:value-of select="name(*[1])"/> --></td>
<td><xsl:value-of select="*[1]/*[1]"/></td>
</tr>
<xsl:apply-templates select="*[not(self::product_id)]"/>
</xsl:template>
<!--These 2 templates will handle the data on the same
row as the tab name.-->
<xsl:template match="product_id/tab_id/*[1]" priority="1">
<xsl:apply-templates mode="newrow"/>
</xsl:template>
<xsl:template match="product_id/tab_id/*[1]/*[1]" mode="newrow"/>
<xsl:template match="*" mode="newrow">
<xsl:call-template name="dataRow"/>
</xsl:template>
<xsl:template match="product_id/tab_id/*/*[not(position()=1)]">
<xsl:call-template name="dataRow"/>
</xsl:template>
<xsl:template name="dataRow">
<tr>
<td/>
<td/>
<td><xsl:value-of select="."/></td>
</tr>
</xsl:template>
<xsl:template match="*[not(self::node)]">
<tr>
<td/>
<td><xsl:value-of select="name()"/> --></td>
<td><xsl:apply-templates/></td>
</tr>
</xsl:template>
</xsl:stylesheet>
我是初学者到日期比较有问题
只是my_date
会像这样比较
for product 1
1980-08-01 > my_date && my_date < 1985-08-01
1989-02-01 > my_date && my_date < 1998-02-01
for product 2
1995-01-25 > my_date && my_date < 2000-01-25
1993-08-03 > my_date && my_date < 2002-10-25
same for product 3
这里my_date
比较第一个值然后是第二个等等..我认为这里的问题是逗号分隔值
我想要这样的输出
Product ID | Product DATA
--------------------------------
1 |product_id => 1
|tab_id => 51
|tab_name => test1
|status => 2
|log => 72
| 19
| 79
|born_from => 1980-08-01
| 1989-02-01
|born_to => 1985-08-01
| 1998-02-01
|sex => 2
| 1
|link => www.google.com
与产品 2 相同,其价值在此先感谢