我在 XML 中遇到问题,当我需要一个元素子项在 Nodejs 中包含 Parent 的属性时。现在只有在child canonicalized中显示的属性是xmlns,但是,例如,有属性xmlns:ns1,xmlns:types,这些属性在函数canonicalize之后的子元素中没有。
我不能在 Node 中搜索函数/库,为我做这个。
在 PHP 中,我可以使用函数 C14N 来做到这一点。
在PHP中我有:
输入:
$xml = '<?xml version="1.0" encoding="UTF-8"?>
<ns1:SendTest xmlns:ns1="http://localhost:8080/TestA/a" xmlns:type="http://localhost:8080/TestA/b" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://localhost:8080/TestA/a http://localhost:8080/TestA/xsd/SendTest.xsd">
<HEAD>
<TESTA>6291</TESTA>
</HEAD>
<TESTB Id="testeb:1ABCDZ">
<TESTC>
<TESTD>e4c47c91392cd57088c28468be0ef2349782f2df</TESTD>
</TESTC>
</TESTB>
</ns1:SendTest>';
PHP代码:
$d = new DOMDocument('1.0');
$d->loadXML($xml);
$data = $d->getElementsByTagName('TESTB')->item(0)->C14N(FALSE,FALSE,NULL,NULL);
echo ($data);
die();
输出:
<?xml version="1.0" encoding="UTF-8"?>
<TESTB xmlns:ns1="http://localhost:8080/TestA/a" xmlns:type="http://localhost:8080/TestA/b" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Id="testeb:1ABCDZ">
<TESTC>
<TESTD>e4c47c91392cd57088c28468be0ef2349782f2df</TESTD>
</TESTC>
</TESTB>
不能在NodeJs ( xml-c14n ) 中工作:
const c14n = require("xml-c14n")();
const DOMParser = require("xmldom").DOMParser;
async function test (){
let xml = xml(input PHP);
let doc = (new DOMParser()).parseFromString(xml);
let canonicalizer = c14n.createCanonicaliser("http://www.w3.org/2001/10/xml-exc-c14n#");
let lote = doc.getElementsByTagName('TESTB');
let canonicalized = await canonicalizer.canonicalise(lote[0]);
console.log(canonicalized.toString());
}
test();
输出:
<TESTB Id="testeb:1ABCDZ">
<TESTC>
<TESTD>e4c47c91392cd57088c28468be0ef2349782f2df</TESTD>
</TESTC>
</TESTB>
我得到的结果不正确,对我的问题有什么建议吗?