[{"PID.3.1":"4","PID.3.4":{"PID.3.4.2":"PATID"}},{"PID.3.1":"2300005","PID.3.4":{"PID.3.4.2":"BLH"}},{"PID.3.1":"0","PID.3.4":{"PID.3.4.2":"YEXH"}}]转成数组
时间: 2023-07-05 19:19:52 浏览: 195
这个字符串看起来像是一个 JSON 格式的字符串,可以使用 JSON 解析器将其转换成数组。在 JavaScript 中,可以使用 `JSON.parse()` 方法将其转换成数组,示例代码如下:
```javascript
const str = '[{"PID.3.1":"4","PID.3.4":{"PID.3.4.2":"PATID"}},{"PID.3.1":"2300005","PID.3.4":{"PID.3.4.2":"BLH"}},{"PID.3.1":"0","PID.3.4":{"PID.3.4.2":"YEXH"}}]';
const arr = JSON.parse(str);
console.log(arr);
```
执行上述代码,可以得到以下结果:
```
[
{
"PID.3.1": "4",
"PID.3.4": {
"PID.3.4.2": "PATID"
}
},
{
"PID.3.1": "2300005",
"PID.3.4": {
"PID.3.4.2": "BLH"
}
},
{
"PID.3.1": "0",
"PID.3.4": {
"PID.3.4.2": "YEXH"
}
}
]
```
这就是将 JSON 格式的字符串转换成数组的方法。
阅读全文