<?xml version="1.0" encoding="utf-8"?>
<info>
<report id="1">
<book>
<title>A</title>
</book>
<author>
<name>xyz</name>
</author>
</report>
<report id="2">
<book>
<title>B</title>
</book>
<author>
<name>xyz</name>
</author>
</report>
<report id="3">
<book>
<title>C</title>
</book>
<author>
<name>xyz</name>
</author>
</report>
</info>
这是我的 xml,我想检索每个报告并将其保存到数据库
我已将 xml 文件加载到 dom,并且可以使用 nodeValue 检索值。通过使用nodeValue我得到像 A 和 XYZ 这样的值,但我希望值在xml 格式
<book>
<title>A</title>
</book>
<author>
<name>xyz</name>
</author>