0
我對上一次在下面的帖子中發佈的同一模塊有疑問。似乎,處理XML解析是相當困難的。 elementTree具有非常大的文檔。nodejs elementtree npm xml解析和合並
我有以下template_XML文件:
<?xml version="1.0" encoding="UTF-8"?>
<Tailoring xmlns="http://checklists.nist.gov/xccdf/1.2" id="xccdf_org.open-scap_tailoring_example">
<status>incomplete</status>
<version time="2013-01-15T16:00:00.000+02:00">1.0</version>
<Profile id="PlaceHolder">
<title>Tailoring for py_test</title>
<select idref="xccdf_rule_name" selected="true"/>
</Profile>
</Tailoring>
並有以下sample_XML文件:
<Benchmark xmlns="http://checklists.nist.gov/xccdf/1.1" xmlns:xsi="www.w3.org/2001/XMLSchema-instance" id="SAP-HANA" resolved="1" xml:lang="en-US">
<status date="2016-03-17">draft</status>
<title xmlns:xhtml="http://www.w3.org/1999/xhtml" xml:lang="en-US">Guide to the Secure Configuration of SAP HANA</title>
<version>0.1.28</version>
<Profile id="profile1">
<title xmlns:xhtml="http://www.w3.org/1999/xhtml" xml:lang="en-US">text1</title>
<select idref="This is rule 1" selected="true"/>
<set-value idref="ssfs_master_key_timeout">20</set-value>
</Profile>
<Profile id="profile2">
<title xmlns:xhtml="http://www.w3.org/1999/xhtml" xml:lang="en-US">text2</title>
<select idref="this is rule1" selected="true"/>
<select idref="this is rule1" selected="true"/>
<select idref="this is rule1" selected="true"/>
</Profile>
</Benchmark>
我需要創建一個new_xml文件, template_XML文件的副本。 ,但希望sample_XML文件的「PROFILE2」標籤,以取代「佔位符」文件標記在new_xml文件。它是一種合併2 xml文件並創建一個新文件。 下面是我曾嘗試代碼:
function call(id){
var template_XML = 'C:\\MyDrive\\template_XML';
var new_xml = 'C:\\MyDrive\\new_xml';
data = fs.readFileSync(template_XML).toString();
data1 = fs.readFileSync(sample_XML).toString();
etree = et.parse(data);
etree1 = et.parse(data1);
var profile = etree.find('./Profile'); // Getting the profile sub-element.
etree.getroot().remove(profile) // Removing the sub-element. So that I can insert new profile from sample file
var profiles = etree1.findall('./Profile'); // Find the required profile.
for (var i = 0; i < profiles.length; i++) {
if(profiles[i].get('id') == 'profile2')
var tmppro = profiles[i];
}
console.log(tmppro);
etree.insert(3,tmppro); // insert it. Failing
var write = fs.openSync(new_xml, 'w');
etree.write(write); // write it. Failing
}
對於一個或其他原因,這個代碼是沒有的「etree.insert」和「etree.write」方面的工作
非常感謝Antonio,WebStorm在編寫進一步的應用程序時會幫助我很多。事實上,我並沒有意識到nodejs應用程序的任何IDE。 populateXmlTemplate()拋出堆棧跟蹤下,但現在它的確定,我會通過在IDE中調試它來處理這種情況。 etree.write(); // TypeError:無法讀取未定義的屬性'iter' 看來我需要+15聲望來upvote答案,但我的upvote被注意到。 :) –
嗨安東尼奧,任何想法,如果我可以複製評論也。例如,如果標籤包含註釋<! - 一些註釋 - >。 ETREE未將sample_XML配置文件中的註釋部分複製到new_xml文件中。 –