最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Is there a library to support autovivification on Javascript objects? - Stack Overflow

programmeradmin0浏览0评论

Is there anyway, either natively or through a library, to use autovivification on Javascript objects?

IE, assuming foo is an object with no properties, being able to just do foo.bar.baz = 5 rather than needing foo.bar = {}; foo.bar.baz = 5.

Is there anyway, either natively or through a library, to use autovivification on Javascript objects?

IE, assuming foo is an object with no properties, being able to just do foo.bar.baz = 5 rather than needing foo.bar = {}; foo.bar.baz = 5.

Share Improve this question edited Nov 23, 2012 at 4:05 James McMahon asked Nov 21, 2012 at 17:02 James McMahonJames McMahon 49.7k69 gold badges211 silver badges288 bronze badges 5
  • 4 Purely natively, I don't think so. undefined isn't extensible or changeable and that's about the only way I could think of doing it without passing it through a function. – Snuffleupagus Commented Nov 21, 2012 at 17:08
  • 2 No. See stackoverflow./questions/7691395/… – lbstr Commented Nov 21, 2012 at 17:09
  • @Ibstr, that question, while referencing autovivification and JavaScript, is not asking the same thing I am. – James McMahon Commented Nov 21, 2012 at 18:29
  • @Snuffleupagus, thanks I didn't think there was a way to do it natively, but it is good to have some confirmation. You should make your ment into an answer. – James McMahon Commented Nov 21, 2012 at 18:32
  • To the people voting to close this question on the basis of duplication, this is not a duplicate of question stackoverflow./questions/7691395/…, that question is asking about the nature of autovivification. I am asking if there is are any libraries to acplish autovivification in Javascript. It is a pletely different question which should be evident to anyone who actually reads rubixibuc's question. I've edited the question title to be clearer about what I am asking for. – James McMahon Commented Nov 21, 2012 at 23:47
Add a ment  | 

5 Answers 5

Reset to default 6

You can't do it exactly with the syntax you want. But as usual, in JS you can write your own function:

function set (obj,keys,val) {
    for (var i=0;i<keys.length;i++) {
        var k = keys[i];
        if (typeof obj[k] == 'undefined') {
            obj[k] = {};
        }
        obj = obj[k];
    }
    obj = val;
}

so now you can do this:

// as per you example:
set(foo,['bar','baz'],5);

without worrying if bar or baz are defined. If you don't like the [..] in the function call you can always iterate over the arguments object.

Purely natively, I don't think so. undefined isn't extensible or changeable and that's about the only way I could imagine doing it without passing it through a function.

I had a desire to do this, so I wrote a package to handle it.

% npm install autovivify
% node
> Av = require('autovivify')
> foo = new Av()
{}
> foo.bar.baz = 5
5
> foo
{ bar: { baz: 5 } }
>

It'll even do arrays with numeric subscripts:

> foo = new Av()
> foo.bar.baz[0] = 'hum'
> foo
{ bar: { baz: [ 'hum' ] } }

Or you can use an eval-based solution. It's ugly, not remended.

function av(xpr) {

    var res = "";
    var pos = 0;
    while (true) {

        var pos = xpr.indexOf("[",pos);
        if (pos == -1) break;
        var frag = xpr.substr(0,pos);
        pos++;

        res += "if (typeof(" + frag + ") != 'object') " + frag + " = {};\n";
    } // while

    return res + xpr;
} // av()


function main() {

    var a = {};
    a["keep"] = "yep";
    eval(av('a[1][1]["xx"] = "a11xx";   '));
    eval(av('a[1][2]["xx"] = "a12xx";   '));

    console.log(a);
} // main()

@slebetman's code doesn't seem to work. The last key should not be assigned an empty object, but rather the val. This code worked:

function autoviv(obj,keys,val) {
  for (var i=0; i < keys.length; i++) {
    var k = keys[i];
    if (typeof obj[k] === 'undefined') {
      if(i === keys.length-1) {
        obj[k] = val;
        return;
      }
      obj[k] = {};
    }
    obj = obj[k];
  }
}

foo = {}
autoviv(foo,['bar','baz'],5);
console.log(foo.bar.baz);
5
发布评论

评论列表(0)

  1. 暂无评论