将 XML 解析为 JSON 或 JavaScript 对象
我正在从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
camaro
像这样的输出
you can use
camaro
like thisoutput