假设有这个基本的 xml 文档:
<result name="response" numFound="73" start="0">
<doc>
<str name="contentType">Content1</str>
<str name="content">Some content here</str>
</doc>
<doc>
<str name="contentType">Content2</str>
<str name="content">Some other content</str>
</doc>
</result>
我计划为每种内容类型使用不同的模板。模板匹配参数是什么?当只有 contentType 字段是特定值时,我无法弄清楚如何匹配 doc 的其他子项。