这是我的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
比较第一个值然后是secound等等。我认为这里的问题是逗号分隔值
我希望我的输出像这样
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及其价值 提前谢谢
答案 0 :(得分:3)
在讨论日期之前,应该注意您的 xsl:apply-templates
还有另一个问题<xsl:apply-templates select="product_id/tab_id/born_from[@value > $my_date]" />
这将选择 born_from 元素,但是从查看匹配的模板看起来您想要实际选择 tab_id 元素,因此您必须重新编写它是这样的:
<xsl:apply-templates select="product_id/tab_id[born_from/@value > $my_date]" />
但是,正如评论中所提到的,XSLT 1.0中的日期没有内置支持。您可能必须使用exension函数或升级才能使用XSLT 2.0。
但是,如果您的日期始终采用YYYY-MM-DD格式,您可以通过删除连字符并将其视为8位数字来进行简单的数字比较。
首先,创建一个变量,将 my_date 参数转换为YYYYMMDD格式的数字
<xsl:variable name="comp_date" select="translate($my_date, '- ', '')" />
然后,尝试将后续的 xsl:apply-templates 更改为此。
<xsl:apply-templates select="
product_id/tab_id[translate(substring-before(born_from/@value, ','), '- ', '') > $comp_date]|
product_id/tab_id[translate(substring-before(born_to/@value, ','), '- ', '') < $comp_date]"/>
请注意,使用 substring-before 仅提取 @value 属性中逗号之前的第一个日期。如果您还想查看逗号后的日期,请使用 substring-after 。