Convert JavaScript string in dot notation into an object reference

前端 未结 27 3004
梦如初夏
梦如初夏 2020-11-21 05:09

Given a JS object

var obj = { a: { b: \'1\', c: \'2\' } }

and a string

\"a.b\"

how can I convert the stri

相关标签:
27条回答
  • 2020-11-21 05:31

    If you expect to dereference the same path many times, building a function for each dot notation path actually has the best performance by far (expanding on the perf tests James Wilkins linked to in comments above).

    var path = 'a.b.x';
    var getter = new Function("obj", "return obj." + path + ";");
    getter(obj);
    

    Using the Function constructor has some of the same drawbacks as eval() in terms of security and worst-case performance, but IMO it's a badly underused tool for cases where you need a combination of extreme dynamism and high performance. I use this methodology to build array filter functions and call them inside an AngularJS digest loop. My profiles consistently show the array.filter() step taking less than 1ms to dereference and filter about 2000 complex objects, using dynamically-defined paths 3-4 levels deep.

    A similar methodology could be used to create setter functions, of course:

    var setter = new Function("obj", "newval", "obj." + path + " = newval;");
    setter(obj, "some new val");
    
    0 讨论(0)
  • 2020-11-21 05:31

    At the risk of beating a dead horse... I find this most useful in traversing nested objects to reference where you're at with respect to the base object or to a similar object with the same structure. To that end, this is useful with a nested object traversal function. Note that I've used an array to hold the path. It would be trivial to modify this to use either a string path or an array. Also note that you can assign "undefined" to the value, unlike some of the other implementations.

    /*
     * Traverse each key in a nested object and call fn(curObject, key, value, baseObject, path)
     * on each. The path is an array of the keys required to get to curObject from
     * baseObject using objectPath(). If the call to fn() returns falsey, objects below
     * curObject are not traversed. Should be called as objectTaverse(baseObject, fn).
     * The third and fourth arguments are only used by recursion.
     */
    function objectTraverse (o, fn, base, path) {
        path = path || [];
        base = base || o;
        Object.keys(o).forEach(function (key) {
            if (fn(o, key, o[key], base, path) && jQuery.isPlainObject(o[key])) {
                path.push(key);
                objectTraverse(o[key], fn, base, path);
                path.pop();
            }
        });
    }
    
    /*
     * Get/set a nested key in an object. Path is an array of the keys to reference each level
     * of nesting. If value is provided, the nested key is set.
     * The value of the nested key is returned.
     */
    function objectPath (o, path, value) {
        var last = path.pop();
    
        while (path.length && o) {
            o = o[path.shift()];
        }
        if (arguments.length < 3) {
            return (o? o[last] : o);
        }
        return (o[last] = value);
    }

    0 讨论(0)
  • 2020-11-21 05:32

    I have extended the elegant answer by ninjagecko so that the function handles both dotted and/or array style references, and so that an empty string causes the parent object to be returned.

    Here you go:

    string_to_ref = function (object, reference) {
        function arr_deref(o, ref, i) { return !ref ? o : (o[ref.slice(0, i ? -1 : ref.length)]) }
        function dot_deref(o, ref) { return ref.split('[').reduce(arr_deref, o); }
        return !reference ? object : reference.split('.').reduce(dot_deref, object);
    };
    

    See my working jsFiddle example here: http://jsfiddle.net/sc0ttyd/q7zyd/

    0 讨论(0)
  • 2020-11-21 05:32

    Yes, it was asked 4 years ago and yes, extending base prototypes is not usually good idea but, if you keep all extensions in one place, they might be useful.
    So, here is my way to do this.

       Object.defineProperty(Object.prototype, "getNestedProperty", {
        value     : function (propertyName) {
            var result = this;
            var arr = propertyName.split(".");
    
            while (arr.length && result) {
                result = result[arr.shift()];
            }
    
            return result;
        },
        enumerable: false
    });
    

    Now you will be able to get nested property everywhere without importing module with function or copy/pasting function.

    UPD.Example:

    {a:{b:11}}.getNestedProperty('a.b'); //returns 11
    

    UPD 2. Next extension brokes mongoose in my project. Also I've read that it might broke jquery. So, never do it in next way

     Object.prototype.getNestedProperty = function (propertyName) {
        var result = this;
        var arr = propertyName.split(".");
    
        while (arr.length && result) {
            result = result[arr.shift()];
        }
    
        return result;
    };
    
    0 讨论(0)
  • 2020-11-21 05:33

    recent note: While I'm flattered that this answer has gotten many upvotes, I am also somewhat horrified. If one needs to convert dot-notation strings like "x.a.b.c" into references, it could (maybe) be a sign that there is something very wrong going on (unless maybe you're performing some strange deserialization).

    That is to say, novices who find their way to this answer must ask themselves the question "why am I doing this?"

    It is of course generally fine to do this if your use case is small and you will not run into performance issues, AND you won't need to build upon your abstraction to make it more complicated later. In fact, if this will reduce code complexity and keep things simple, you should probably go ahead and do what OP is asking for. However, if that's not the case, consider if any of these apply:

    case 1: As the primary method of working with your data (e.g. as your app's default form of passing objects around and dereferencing them). Like asking "how can I look up a function or variable name from a string".

    • This is bad programming practice (unnecessary metaprogramming specifically, and kind of violates function side-effect-free coding style, and will have performance hits). Novices who find themselves in this case, should instead consider working with array representations, e.g. ['x','a','b','c'], or even something more direct/simple/straightforward if possible: like not losing track of the references themselves in the first place (most ideal if it's only client-side or only server-side), etc. (A pre-existing unique id would be inelegant to add, but could be used if the spec otherwise requires its existence regardless.)

    case 2: Working with serialized data, or data that will be displayed to the user. Like using a date as a string "1999-12-30" rather than a Date object (which can cause timezone bugs or added serialization complexity if not careful). Or you know what you're doing.

    • This is maybe fine. Be careful that there are no dot strings "." in your sanitized input fragments.

    If you find yourself using this answer all the time and converting back and forth between string and array, you may be in the bad case, and should consider an alternative.

    Here's an elegant one-liner that's 10x shorter than the other solutions:

    function index(obj,i) {return obj[i]}
    'a.b.etc'.split('.').reduce(index, obj)
    

    [edit] Or in ECMAScript 6:

    'a.b.etc'.split('.').reduce((o,i)=>o[i], obj)
    

    (Not that I think eval always bad like others suggest it is (though it usually is), nevertheless those people will be pleased that this method doesn't use eval. The above will find obj.a.b.etc given obj and the string "a.b.etc".)

    In response to those who still are afraid of using reduce despite it being in the ECMA-262 standard (5th edition), here is a two-line recursive implementation:

    function multiIndex(obj,is) {  // obj,['1','2','3'] -> ((obj['1'])['2'])['3']
        return is.length ? multiIndex(obj[is[0]],is.slice(1)) : obj
    }
    function pathIndex(obj,is) {   // obj,'1.2.3' -> multiIndex(obj,['1','2','3'])
        return multiIndex(obj,is.split('.'))
    }
    pathIndex('a.b.etc')
    

    Depending on the optimizations the JS compiler is doing, you may want to make sure any nested functions are not re-defined on every call via the usual methods (placing them in a closure, object, or global namespace).

    edit:

    To answer an interesting question in the comments:

    how would you turn this into a setter as well? Not only returning the values by path, but also setting them if a new value is sent into the function? – Swader Jun 28 at 21:42

    (sidenote: sadly can't return an object with a Setter, as that would violate the calling convention; commenter seems to instead be referring to a general setter-style function with side-effects like index(obj,"a.b.etc", value) doing obj.a.b.etc = value.)

    The reduce style is not really suitable to that, but we can modify the recursive implementation:

    function index(obj,is, value) {
        if (typeof is == 'string')
            return index(obj,is.split('.'), value);
        else if (is.length==1 && value!==undefined)
            return obj[is[0]] = value;
        else if (is.length==0)
            return obj;
        else
            return index(obj[is[0]],is.slice(1), value);
    }
    

    Demo:

    > obj = {a:{b:{etc:5}}}
    
    > index(obj,'a.b.etc')
    5
    > index(obj,['a','b','etc'])   #works with both strings and lists
    5
    
    > index(obj,'a.b.etc', 123)    #setter-mode - third argument (possibly poor form)
    123
    
    > index(obj,'a.b.etc')
    123
    

    ...though personally I'd recommend making a separate function setIndex(...). I would like to end on a side-note that the original poser of the question could (should?) be working with arrays of indices (which they can get from .split), rather than strings; though there's usually nothing wrong with a convenience function.


    A commenter asked:

    what about arrays? something like "a.b[4].c.d[1][2][3]" ? –AlexS

    Javascript is a very weird language; in general objects can only have strings as their property keys, so for example if x was a generic object like x={}, then x[1] would become x["1"]... you read that right... yup...

    Javascript Arrays (which are themselves instances of Object) specifically encourage integer keys, even though you could do something like x=[]; x["puppy"]=5;.

    But in general (and there are exceptions), x["somestring"]===x.somestring (when it's allowed; you can't do x.123).

    (Keep in mind that whatever JS compiler you're using might choose, maybe, to compile these down to saner representations if it can prove it would not violate the spec.)

    So the answer to your question would depend on whether you're assuming those objects only accept integers (due to a restriction in your problem domain), or not. Let's assume not. Then a valid expression is a concatenation of a base identifier plus some .identifiers plus some ["stringindex"]s

    This would then be equivalent to a["b"][4]["c"]["d"][1][2][3], though we should probably also support a.b["c\"validjsstringliteral"][3]. You'd have to check the ecmascript grammar section on string literals to see how to parse a valid string literal. Technically you'd also want to check (unlike in my first answer) that a is a valid javascript identifier.

    A simple answer to your question though, if your strings don't contain commas or brackets, would be just be to match length 1+ sequences of characters not in the set , or [ or ]:

    > "abc[4].c.def[1][2][\"gh\"]".match(/[^\]\[.]+/g)
    // ^^^ ^  ^ ^^^ ^  ^   ^^^^^
    ["abc", "4", "c", "def", "1", "2", ""gh""]
    

    If your strings don't contain escape characters or " characters, and because IdentifierNames are a sublanguage of StringLiterals (I think???) you could first convert your dots to []:

    > var R=[], demoString="abc[4].c.def[1][2][\"gh\"]";
    > for(var match,matcher=/^([^\.\[]+)|\.([^\.\[]+)|\["([^"]+)"\]|\[(\d+)\]/g; 
          match=matcher.exec(demoString); ) {
      R.push(Array.from(match).slice(1).filter(x=>x!==undefined)[0]);
      // extremely bad code because js regexes are weird, don't use this
    }
    > R
    
    ["abc", "4", "c", "def", "1", "2", "gh"]
    

    Of course, always be careful and never trust your data. Some bad ways to do this that might work for some use cases also include:

    // hackish/wrongish; preprocess your string into "a.b.4.c.d.1.2.3", e.g.: 
    > yourstring.replace(/]/g,"").replace(/\[/g,".").split(".")
    "a.b.4.c.d.1.2.3"  //use code from before
    

    Special 2018 edit:

    Let's go full-circle and do the most inefficient, horribly-overmetaprogrammed solution we can come up with... in the interest of syntactical purityhamfistery. With ES6 Proxy objects!... Let's also define some properties which (imho are fine and wonderful but) may break improperly-written libraries. You should perhaps be wary of using this if you care about performance, sanity (yours or others'), your job, etc.

    // [1,2,3][-1]==3 (or just use .slice(-1)[0])
    if (![1][-1])
        Object.defineProperty(Array.prototype, -1, {get() {return this[this.length-1]}}); //credit to caub
    
    // WARNING: THIS XTREME™ RADICAL METHOD IS VERY INEFFICIENT,
    // ESPECIALLY IF INDEXING INTO MULTIPLE OBJECTS,
    // because you are constantly creating wrapper objects on-the-fly and,
    // even worse, going through Proxy i.e. runtime ~reflection, which prevents
    // compiler optimization
    
    // Proxy handler to override obj[*]/obj.* and obj[*]=...
    var hyperIndexProxyHandler = {
        get: function(obj,key, proxy) {
            return key.split('.').reduce((o,i)=>o[i], obj);
        },
        set: function(obj,key,value, proxy) {
            var keys = key.split('.');
            var beforeLast = keys.slice(0,-1).reduce((o,i)=>o[i], obj);
            beforeLast[keys[-1]] = value;
        },
        has: function(obj,key) {
            //etc
        }
    };
    function hyperIndexOf(target) {
        return new Proxy(target, hyperIndexProxyHandler);
    }
    

    Demo:

    var obj = {a:{b:{c:1, d:2}}};
    console.log("obj is:", JSON.stringify(obj));
    
    var objHyper = hyperIndexOf(obj);
    console.log("(proxy override get) objHyper['a.b.c'] is:", objHyper['a.b.c']);
    objHyper['a.b.c'] = 3;
    console.log("(proxy override set) objHyper['a.b.c']=3, now obj is:", JSON.stringify(obj));
    
    console.log("(behind the scenes) objHyper is:", objHyper);
    
    if (!({}).H)
        Object.defineProperties(Object.prototype, {
            H: {
                get: function() {
                    return hyperIndexOf(this); // TODO:cache as a non-enumerable property for efficiency?
                }
            }
        });
    
    console.log("(shortcut) obj.H['a.b.c']=4");
    obj.H['a.b.c'] = 4;
    console.log("(shortcut) obj.H['a.b.c'] is obj['a']['b']['c'] is", obj.H['a.b.c']);
    

    Output:

    obj is: {"a":{"b":{"c":1,"d":2}}}

    (proxy override get) objHyper['a.b.c'] is: 1

    (proxy override set) objHyper['a.b.c']=3, now obj is: {"a":{"b":{"c":3,"d":2}}}

    (behind the scenes) objHyper is: Proxy {a: {…}}

    (shortcut) obj.H['a.b.c']=4

    (shortcut) obj.H['a.b.c'] is obj['a']['b']['c'] is: 4

    inefficient idea: You can modify the above to dispatch based on the input argument; either use the .match(/[^\]\[.]+/g) method to support obj['keys'].like[3]['this'], or if instanceof Array, then just accept an Array as input like keys = ['a','b','c']; obj.H[keys].


    Per suggestion that maybe you want to handle undefined indices in a 'softer' NaN-style manner (e.g. index({a:{b:{c:...}}}, 'a.x.c') return undefined rather than uncaught TypeError)...:

    1) This makes sense from the perspective of "we should return undefined rather than throw an error" in the 1-dimensional index situation ({})['e.g.']==undefined, so "we should return undefined rather than throw an error" in the N-dimensional situation.

    2) This does not make sense from the perspective that we are doing x['a']['x']['c'], which would fail with a TypeError in the above example.

    That said, you'd make this work by replacing your reducing function with either:

    (o,i)=>o===undefined?undefined:o[i], or (o,i)=>(o||{})[i].

    (You can make this more efficient by using a for loop and breaking/returning whenever the subresult you'd next index into is undefined, or using a try-catch if you expect such failures to be sufficiently rare.)

    0 讨论(0)
  • 2020-11-21 05:33

    A little more involved example with recursion.

    function recompose(obj,string){
        var parts = string.split('.');
        var newObj = obj[parts[0]];
        if(parts[1]){
            parts.splice(0,1);
            var newString = parts.join('.');
            return recompose(newObj,newString);
        }
        return newObj;
    }
    
    
    var obj = { a: { b: '1', c: '2', d:{a:{b:'blah'}}}};
    
    alert(recompose(obj,'a.d.a.b')); //blah
    
    0 讨论(0)
提交回复
热议问题