javascript - 什么是 Node JS 的最佳 JSON 或 JS 对象到 XML 转换器模块

标签 javascript xml json node.js

我需要构建一个相对简单的 XML 文档,其中包含一些层次结构和来自 JS 对象的一些属性。我现在站在选择以下模块之一之前:

我应该选择哪个模块?

这个问题可能会被认为不是一个好问题而被驳回,但我不知道该怎么问。

免责声明:我在每个存储库上发布了与问题相同的问题

这是我要构建的 XML:

<?xml version="1.0" encoding="UTF-8"?>
<orders>
    <order>
        <order_orderid>123123</order_orderid>
        <order_customerid>345345</order_customerid>
        <order_senhcode>7604</order_senhcode>
        <order_mediacode>qwert</order_mediacode>
        <order_totalshippingcost>0</order_totalshippingcost>
        <order_paymentmethod>GB</order_paymentmethod>
        <order_paymentnumber />
        <order_htmltext />
        <order_comment />
        <shippingmethodid>02</shippingmethodid>
        <order_creditcardnumber />
        <order_creditcardnameholder />
        <order_creditcardexpiredate />
        <order_creditcardsafetycode />
        <order_gifttext />
        <inv_customer>
            <inv_customer_addresstypeid />
            <inv_customer_gendermale>0</inv_customer_gendermale>
            <inv_customer_firstname>qwerty</inv_customer_firstname>
            <inv_customer_initials>Q.W.E</inv_customer_initials>
            <inv_customer_prename />
            <inv_customer_lastname>Qwerty</inv_customer_lastname>
            <inv_customer_company>Some company</inv_customer_company>
            <inv_customer_street>Postbus</inv_customer_street>
            <inv_customer_housenumber>13</inv_customer_housenumber>
            <inv_customer_housenumberadditional />
            <inv_customer_postalcode>1234 AB</inv_customer_postalcode>
            <inv_customer_city>THERE</inv_customer_city>
            <inv_customer_isocodecountry>NL</inv_customer_isocodecountry>
            <inv_customer_email>a@b.nl</inv_customer_email>
            <inv_customer_telephone>0168-123456</inv_customer_telephone>
            <inv_customer_mobilenr>06-12345678</inv_customer_mobilenr>
        </inv_customer>
        <orderlines>
            <orderline>
                <orderline_orderrecordid>1234</orderline_orderrecordid>
                <orderline_orderid>8765432</orderline_orderid>
                <orderline_articlenr>164-05-366</orderline_articlenr>
                <orderline_quantity>2</orderline_quantity>
                <orderline_productdescription>Some gift voucher</orderline_productdescription>
                <orderline_price>1233</orderline_price>
            </orderline>
            <orderline>
                <orderline_orderrecordid>5678</orderline_orderrecordid>
                <orderline_orderid>8765432</orderline_orderid>
                <orderline_articlenr>164-05-367</orderline_articlenr>
                <orderline_quantity>3</orderline_quantity>
                <orderline_productdescription>Some other gift voucher</orderline_productdescription>
                <orderline_price>1244</orderline_price>
            </orderline>
        </orderlines>
    </order>
</orders>

最佳答案

我调查了自己

| author        | davidcalhoun | soldair   | QuickenLoans | michaelkourlas |
|---------------|--------------|-----------|--------------|----------------|
| module        | jstoxml      | node-     | node-        | node-          |
|               |              | jsontoxml | easyxml      | js2xmlparser   |
| Commits       | 31           | 64        | 39           | 61             |
| Recent commit | a year ago   | 2 years ag| 6 months ago | 16 days ago    |
| Contributors  | 2            | 7         | 7            | 6              |
| Issues        | 16           | 19        | 17           | 15             |
| Open Issues   | 7            | 1         | 6            | 1              |
| npm install   |  jstoxml     | not found | easyxml      | js2xmlparser   |
| Dependencies  | None         | None      | elementtree, | None           |
|               |              |           | inflect      |                |
| Throws errors | None         | None      | 3            | 12             |

然后是需要比较的对象类型

davidcalhoun/jstoxml :

{
  "_name": 'foo',
  "_content": 'bar',
  "_attrs": {
    "a": 'b',
    "c": 'd'
  }
}

soldair/node-jsontoxml : 看起来很复杂

QuickenLoans/easyxml :

items: [{
    "name": 'one',
    "_id": 1
  }, {
    "name": 'two',
    "_id": 2
  }
]

michaelkourlas/node-js2xmlparser

foo: {
  "#": 'bar',
  "@": {
    a: 'b',
    c: 'd'
  }
}

我想我会试试 michaelkourlas 的 node-js2xmlparser。

更新:现在看来还有两个值得一提:

后者是迄今为止在 npm 上最成熟和下载最多的。它允许您一次性或迭代地构建 XML。

关于javascript - 什么是 Node JS 的最佳 JSON 或 JS 对象到 XML 转换器模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24309184/

相关文章:

android - 如何使用 Gson 正确序列化/反序列化 kotlin 中的复杂对象?

javascript - 检查对象是否存在于另一个对象中

javascript - 在 Rails 中使用 JQuery Jcrop 插件裁剪头像

java - 如何在groovy中解析xml文件并将其放入pojo中?

javascript - 模拟 :starts-with or :ends-with for searching text? 的 jQuery 选择器

Javascript HTTP POST 输入 JSON 错误

javascript - 编辑选项仅对在 php 中上传的用户可见

javascript - nodejs 中的语法 babel

java - 如果站点地图的网址数量超过最大数量,则将站点地图拆分为更多站点地图

javascript - 从 JSON 文件返回 RegExp 模式以创建 Angular 指令