JS,把xml格式转换为JSON格式
时间: 2024-05-11 17:14:20 浏览: 121
JS xml转json
可以使用第三方库来实现将XML格式转换为JSON格式,比如xml2json。
使用方法如下:
1. 安装xml2json库
```
npm install xml2json --save
```
2. 引入xml2json库
```javascript
const xml2json = require('xml2json');
```
3. 调用xml2json库的toJSON方法将XML格式转换为JSON格式
```javascript
const xmlString = '<person><name>John</name><age>30</age><city>New York</city></person>';
const jsonObject = JSON.parse(xml2json.toJson(xmlString));
console.log(jsonObject);
```
输出结果:
```json
{
"person": {
"name": "John",
"age": "30",
"city": "New York"
}
}
```
阅读全文