我所拥有的是这样的数组:['foo','bar']
我希望将其变成一个看起来像这样的对象:
{ foo:{ bar:{ etc:{} } } }
我尝试过两个循环,但如果数组中有三个值,我可以让它工作。
答案 0 :(得分:5)
var obj = {};
var pointer = obj;
array.forEach(function (item) {
pointer = pointer[item] = {};
});
这是小提琴:http://jsfiddle.net/h67ts/
如果你必须支持IE< 9,您可以使用常规循环,也可以使用this polyfill:
if ( !Array.prototype.forEach ) {
Array.prototype.forEach = function(fn, scope) {
for(var i = 0, len = this.length; i < len; ++i) {
fn.call(scope, this[i], i, this);
}
}
}