用于在空 xml 标记中设置默认值的 XSLT
我正在某些 xml 上运行 xsl 转换,并且需要能够在一些标记上设置一些默认值(如果它们显示为空)。例如,我的 xml 有
<record>
<name>Bob</name>
<latitude>51.23645</latitude>
<longitude>-0.1254</longitude>
<rank></rank>
</record>
<record>
<name>Chantel</name>
<latitude></latitude>
<longitude></longitude>
<rank>5</rank>
</record>
,我想设置一些默认值来输出:
<record>
<name>Bob</name>
<latitude>51.23645</latitude>
<longitude>-0.1254</longitude>
<rank>0</rank>
</record>
<record>
<name>Chantel</name>
<latitude>0.00</latitude>
<longitude>0.00</longitude>
<rank>5</rank>
</record>
我认为这很简单,但似乎无法破解它。
提前致谢。
编辑:这就是我试图做的。仍在学习,只是在黑暗中摸索!
<xsl:template match="record">
<xsl:when test="name()='latitude'">
<xsl:element name="latitude">
<xsl:choose>
<xsl:when test="text()=''">
<latitude>0.00</latitude>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="latitude"></xsl:value-of>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
</xsl:when>
</xsl:template>
I'm running an xsl transition on some xml and need to be able to set some default values on a few tags if they appear as empty. For example, my xml has
<record>
<name>Bob</name>
<latitude>51.23645</latitude>
<longitude>-0.1254</longitude>
<rank></rank>
</record>
<record>
<name>Chantel</name>
<latitude></latitude>
<longitude></longitude>
<rank>5</rank>
</record>
and I would like to set some defaults to output:
<record>
<name>Bob</name>
<latitude>51.23645</latitude>
<longitude>-0.1254</longitude>
<rank>0</rank>
</record>
<record>
<name>Chantel</name>
<latitude>0.00</latitude>
<longitude>0.00</longitude>
<rank>5</rank>
</record>
I thought this would be straightforward but can't seem to crack it.
Thanks in advance.
Edit: This is what I was trying to do. Still learning so just a fumble in the dark!
<xsl:template match="record">
<xsl:when test="name()='latitude'">
<xsl:element name="latitude">
<xsl:choose>
<xsl:when test="text()=''">
<latitude>0.00</latitude>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="latitude"></xsl:value-of>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
</xsl:when>
</xsl:template>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
添加更多模板来设置其他标签的默认值。
工作原理:第一个模板称为“身份模板”,它将节点从输入复制到输出而不更改。第二个模板匹配没有文本子节点的“rank”节点(即空“rank”节点),将它们及其属性复制到输出,然后插入默认值。
Try this:
Add more templates to set default values for other tags.
How it works: The first template is known as the "identity template", and copies nodes from input to output unchanged. The second template matches "rank" nodes without text child nodes (i.e. empty "rank" nodes), copies them to the output with their attributes and then inserts the default.