将 XML 解析为 JSON 或 JavaScript 对象

发布于 2025-01-16 19:26:07 字数 681 浏览 0 评论 0原文

我正在从 api 接收 xml 数据,请检查此链接 https://developers。 cj.com/docs/rest-apis/advertiser-lookup

我需要将 xml 解析为 json 或 js 对象才能正确使用它。

我尝试过 xml2js,它按以下方式转换内容。

<?xml version="1.0" encoding="UTF-8"?>
<cj-api><error-message>  You must provide an Authorization header.</error-message></cj-api>
{
  'cj-api': { 'error-message': [ 'You must provide an Authorization header.' ] }
}

在这种情况下,我不需要数组,只需要简单的值。 有我可以使用的有效解析器吗?

I am receiving xml data from an api, check this link https://developers.cj.com/docs/rest-apis/advertiser-lookup

I need to parse xml to json or js object in order to use it properly.

I've tried xml2js, it converts stuff in the following way.

<?xml version="1.0" encoding="UTF-8"?>
<cj-api><error-message>  You must provide an Authorization header.</error-message></cj-api>
{
  'cj-api': { 'error-message': [ 'You must provide an Authorization header.' ] }
}

In this case I dont need the array, just the simple value.
Is there a working parser that I can use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神经大条 2025-01-23 19:26:08

您可以使用 camaro 像这样的

const { transform } = require('camaro')

async function main() {
    const xml = `
<?xml version="1.0" encoding="UTF-8"?>
<cj-api><error-message>  You must provide an Authorization header.</error-message></cj-api>

`

    const template = {
        errorMessage: '/cj-api/error-message'
    }
    const output = await transform(xml, template)
    console.log(output.message);
}

main()

输出

  You must provide an Authorization header.

you can use camaro like this

const { transform } = require('camaro')

async function main() {
    const xml = `
<?xml version="1.0" encoding="UTF-8"?>
<cj-api><error-message>  You must provide an Authorization header.</error-message></cj-api>

`

    const template = {
        errorMessage: '/cj-api/error-message'
    }
    const output = await transform(xml, template)
    console.log(output.message);
}

main()

output

  You must provide an Authorization header.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文