XSLT - 如何匹配任何非文本节点子节点?
我是 XSLT 新手,我不知道如何获取 xsl:if 在没有子标签时匹配。
我希望这个匹配:
<context>
howdy
</context>
而这个不匹配:
<context>
<child>
howdy
</child>
</context>
I'm new to XSLT and I can't figure out how to get an xsl:if that matches when there are no child tags.
I want this to match:
<context>
howdy
</context>
And this not:
<context>
<child>
howdy
</child>
</context>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
相关的 xpath 表达式应如下所示:
the relevant xpath expression should look like:
您还可以指定
count(child::*) = 0 。
You could also specify
count(child::*) = 0 .