json数组格式转为数组
时间: 2023-08-08 19:11:10 浏览: 172
JSON 转 数组方法
可以使用JavaScript的JSON.parse()方法将JSON数组格式转换为数组。以下是一个示例代码:
```javascript
const jsonArray = '[{"name":"John", "age":30}, {"name":"Jane", "age":25}, {"name":"Bob", "age":40}]';
const array = JSON.parse(jsonArray);
console.log(array);
```
输出结果为:
```javascript
[
{ name: 'John', age: 30 },
{ name: 'Jane', age: 25 },
{ name: 'Bob', age: 40 }
]
```
这样就将JSON数组转换为了JavaScript数组。
阅读全文