javascript - nodejs elementtree npm xml解析与合并

标签 javascript node.js xml parsing elementtree

我对我上次在下面的帖子中发布的同一模块有疑问。看来,处理XML解析是相当困难的。 elementTree 的文档非常少。

我有一个以下 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 文件的副本。 但想要将 new_xml 文件中的“PlaceHolder”配置文件标记替换为 sample_XML 文件中的“profile2”标记。它是一种合并 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”方面不起作用

最佳答案

最后我能够让它与当前的库一起工作。 请看我的评论:

'use strict';

const et = require('elementtree');
const path = require('path');
const fs = require('fs');

function populateXmlTemplate(id) {
	//Please use path.join to make it cross-platform
	var template_XML = path.join(__dirname, 'template.xml');
	var sample_XML = path.join(__dirname, 'sample.xml');
	var new_xml = path.join(__dirname, 'new.xml');

	var data = fs.readFileSync(template_XML).toString();
	var data1 = fs.readFileSync(sample_XML).toString();

	var etree = et.parse(data);
	var etree1 = et.parse(data1);

	var root = etree.getroot();

	var placeholder = root.find('./Profile');
	root.remove(placeholder);

	var profiles = etree1.findall('./Profile'); // Find the required profile.
	for (var i = 0; i < profiles.length; i++) {
		//If I get it right, it shouldn't be hardcoded
		if (profiles[i].get('id') == id) {
			var tmppro = profiles[i];
		}
	}

	//After you removed the placeholder the number of children decreased
	//So it should be 2, not 3.
	//Also etree doesn't have insert method, please call root.insert
	root.insert(2, tmppro);

	//You have been writing the document a bit incorrectly.
	var resultXml = etree.write();
	fs.writeFileSync(new_xml, resultXml);
}

populateXmlTemplate('profile2');

module.exports = {populateXmlTemplate};

但是你是对的,文档并不好。大部分都不见了。所以大多数时候我只是 debugging看看可用的方法,还有一些tests在 lib 存储库中。

还有其他模块可以与 js 一起使用。请看这个answer .

关于javascript - nodejs elementtree npm xml解析与合并,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42553153/

相关文章:

php - 通过 PHP 或 Apache 从服务器端上传 HTTP 文件

node.js - 如何从文本文件中的 node.js 中的特定行位置删除行

java - 存储只读数据以供 java 程序读取的最有效方法是什么?

javascript - 跟踪代码管理器无法识别 Google 跟踪代码管理器数据层

javascript - 将变量与鼠标事件一起发送到函数

javascript - Codemirror 编辑器未加载文本区域的内容

node.js - 为什么 Node 使用不需要导入?

javascript - jQuery addClass/removeClass 在调试期间工作但不正常执行

php - 使用 SimpleXML 遍历 XML 对象

xml - 甲骨文 XPath : Selecting first occurrence of an element