0

我正在尝试使用 tcl 和 tdom 包解析 XML。我在执行此操作时遇到了麻烦,因为我要解析的节点是具有多个命名空间的节点的子节点。我将如何解析 realmCode 或 title 元素?以下是我尝试过的:

package require tdom

set XML {<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="http://www.cerner.com/cda_stylesheet/" ?>
<ClinicalDocument xmlns="urn:hl7-org:v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sdtc="urn:hl7-org:sdtc" xsi:schemaLocation="urn:hl7-org:v3 ../../../CDA%20R2/cda-schemas-and-samples/infrastructure/cda/CDA.xsd" classCode="DOCCLIN" moodCode="EVN">
    <realmCode code="US" />
    <title>Discharge Summary</title>
</ClinicalDocument>}

set nsmap {
  a urn:hl7-org:v3
  x http://www.w3.org/2001/XMLSchema-instance
  s urn:hl7-org:sdtc
}

set doc [dom parse $XML]
set root [$doc documentElement]
set node [$root selectNodes -namespaces $nsmap "/a:ClinicalDocument/title"]
#set node [$root selectNodes "/ClinicalDocument/title"] ;# tried this as well - does not work

$doc delete
4

2 回答 2

2

您需要为路径的一级指定命名空间,而不仅仅是根。利用

set title [$root selectNodes -namespaces $nsmap /a:ClinicalDocument/a:title]
set realm [$root selectNodes -namespaces $nsmap /a:ClinicalDocument/a:realmCode/@code]

等等

于 2020-10-07T01:59:16.923 回答
0

这更多是为了完整性,不一定推荐。您可以指示 tDOM 简单地忽略名称空间。见-ignorexmlns

手表:

set doc [dom parse -ignorexmlns $XML]
set root [$doc documentElement]
$root selectNodes "/ClinicalDocument/title"
$root selectNodes "/ClinicalDocument/realmCode/@code"

后果很明显:模棱两可。

于 2020-10-07T15:14:36.663 回答