如何在Javascript中将数组转换为对象

如何在Javascript中将数组转换为对象

本文介绍了如何在Javascript中将数组转换为对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试用Javascript转换数组

I am trying to convert in Javascript an array

A=['"age":"20"','"name":"John"','"email":"[email protected]"'];

反对

O={"age":"20","name":"John","email":"[email protected]"}.

我该怎么做.谢谢

推荐答案

应该简单明了,只需在冒号上迭代并拆分

Should be straight forward, just iterate and split on the colon

var A = ['"age":"20"','"name":"John"','"email":"[email protected]"'];

var O = {};

A.forEach(function(item) {
    var parts = item.split(':').map(function(x) { return x.trim().replace(/\"/g,'') });

    O[parts[0]] = parts[1];
});

document.body.innerHTML = '<pre>' + JSON.stringify(O, null, 4) + '</pre>';

这篇关于如何在Javascript中将数组转换为对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 21:15