web-dev-qa-db-ja.com

オブジェクトの列挙不可能な継承プロパティ名を取得することは可能ですか?

JavaScriptには、取得するものに応じて、オブジェクトのプロパティを取得する方法がいくつかあります。

1)Object.keys()。これはオブジェクトのすべての列挙可能なプロパティ、ECMA5メソッドを返します。

2)_for...in_ループ。オブジェクトの列挙可能なプロパティを、それらが独自のプロパティであるか、プロトタイプチェーンから継承されたかに関係なく返します。

3)Object.getOwnPropertyNames(obj)は、列挙可能かどうかに関係なく、オブジェクトのすべての独自のプロパティを返します。

また、hasOwnProperty(prop)などのメソッドがあり、プロパティが継承されているか、実際にそのオブジェクトに属しているかどうかを確認できます。また、propertyIsEnumerable(prop)は、名前が示すように、プロパティが列挙可能。

これらのすべてのオプションでは、オブジェクトの非列挙型、非所有プロパティを取得する方法はありません。これを行う方法はありますか?言い換えると、継承された列挙不可能なプロパティのリストを何らかの方法で取得できますか?

ありがとうございました。

87
dkugappi

getOwnPropertyNamesを使用すると、列挙できないプロパティを取得できるため、それを使用して、プロトタイプチェーンをたどることと組み合わせることができます。

function getAllProperties(obj){
    var allProps = []
      , curr = obj
    do{
        var props = Object.getOwnPropertyNames(curr)
        props.forEach(function(prop){
            if (allProps.indexOf(prop) === -1)
                allProps.Push(prop)
        })
    }while(curr = Object.getPrototypeOf(curr))
    return allProps
}

Safari 5.1でテストして、

> getAllProperties([1,2,3])
["0", "1", "2", "length", "constructor", "Push", "slice", "indexOf", "sort", "splice", "concat", "pop", "unshift", "shift", "join", "toString", "forEach", "reduceRight", "toLocaleString", "some", "map", "lastIndexOf", "reduce", "filter", "reverse", "every", "hasOwnProperty", "isPrototypeOf", "valueOf", "__defineGetter__", "__defineSetter__", "__lookupGetter__", "propertyIsEnumerable", "__lookupSetter__"]

更新:コードを少しリファクタリングしました(スペースと中括弧を追加し、関数名を改善しました):

function getAllPropertyNames( obj ) {
    var props = [];

    do {
        Object.getOwnPropertyNames( obj ).forEach(function ( prop ) {
            if ( props.indexOf( prop ) === -1 ) {
                props.Push( prop );
            }
        });
    } while ( obj = Object.getPrototypeOf( obj ) );

    return props;
}

そして単にすべてを取得するには..(enum/nonenum、self/inherited ..確認してください..

function getAllPropertyNames( obj ) {
    var props = [];

    do {
        props= props.concat(Object.getOwnPropertyNames( obj ));
    } while ( obj = Object.getPrototypeOf( obj ) );

    return props;
}
102
airportyh

セットを活用すると、いくぶんクリーンなソリューション、IMOにつながります。

const own = Object.getOwnPropertyNames;
const proto = Object.getPrototypeOf;

function getAllPropertyNames(obj) {
    const props = new Set();
    do own(obj).forEach(p => props.add(p)); while (obj = proto(obj));
    return Array.from(props);
}
2
rich remer

再帰を使用したよりクリーンなソリューション:

function getAllPropertyNames (obj) {
    const proto     = Object.getPrototypeOf(obj);
    const inherited = (proto) ? getAllPropertyNames(proto) : [];
    return [...new Set(Object.getOwnPropertyNames(obj).concat(inherited))];
}

編集

より一般的な機能:

function walkProtoChain (obj, callback) {
    const proto     = Object.getPrototypeOf(obj);
    const inherited = (proto) ? walkProtoChain(proto, callback) : [];
    return [...new Set(callback(obj).concat(inherited))];
}

function getOwnNonEnumPropertyNames (obj) {
    return Object.getOwnPropertyNames(obj)
        .filter(p => !obj.propertyIsEnumerable(p));
}

function getAllPropertyNames (obj) {
    return walkProtoChain(obj, Object.getOwnPropertyNames);
}

function getAllEnumPropertyNames (obj) {
    return walkProtoChain(obj, Object.keys);
}

function getAllNonEnumPropertyNames (obj) {
    return walkProtoChain(obj, getOwnNonEnumPropertyNames);
}

この同じテンプレートは、Object.getOwnPropertySymbolsなどを使用して適用できます。

1
Josh Klodnicki

いくつかのインスタンスの継承されたプロパティまたはメソッドをすべて取得するには、次のようなものを使用できます

var BaseType = function () {
    this.baseAttribute = "base attribute";
    this.baseMethod = function() {
        return "base method";
    };
};

var SomeType = function() {
    BaseType();
    this.someAttribute = "some attribute";
    this.someMethod = function (){
        return "some method";
    };
};

SomeType.prototype = new BaseType();
SomeType.prototype.constructor = SomeType;

var instance = new SomeType();

Object.prototype.getInherited = function(){
    var props = []
    for (var name in this) {  
        if (!this.hasOwnProperty(name) && !(name == 'constructor' || name == 'getInherited')) {  
            props.Push(name);
        }  
    }
    return props;
};

alert(instance.getInherited().join(","));
1
Milan Jaric

親オブジェクトの列挙不可能なプロパティをログに記録しようとしている場合exデフォルトでは、es6のクラス内で定義されたメソッドはプロトタイプに設定されますが、列挙不可能として設定されます。

Object.getOwnPropertyNames(Object.getPrototypeOf(obj));
0
Rahil Ahmad

これが私が主題を研究している間に思いついた解決策です。 objオブジェクトの列挙不可能な非所有プロパティをすべて取得するには、getProperties(obj, "nonown", "nonenum");を実行します

function getProperties(obj, type, enumerability) {
/**
 * Return array of object properties
 * @param {String} type - Property type. Can be "own", "nonown" or "both"
 * @param {String} enumerability - Property enumerability. Can be "enum", 
 * "nonenum" or "both"
 * @returns {String|Array} Array of properties
 */
    var props = Object.create(null);  // Dictionary

    var firstIteration = true;

    do {
        var allProps = Object.getOwnPropertyNames(obj);
        var enumProps = Object.keys(obj);
        var nonenumProps = allProps.filter(x => !(new Set(enumProps)).has(x));

        enumProps.forEach(function(prop) {
            if (!(prop in props)) {
                props[prop] = { own: firstIteration, enum_: true };
            }           
        });

        nonenumProps.forEach(function(prop) {
            if (!(prop in props)) {
                props[prop] = { own: firstIteration, enum_: false };
            }           
        });

        firstIteration = false;
    } while (obj = Object.getPrototypeOf(obj));

    for (prop in props) {
        if (type == "own" && props[prop]["own"] == false) {
            delete props[prop];
            continue;
        }
        if (type == "nonown" && props[prop]["own"] == true) {
            delete props[prop];
            continue;
        }

        if (enumerability == "enum" && props[prop]["enum_"] == false) {
            delete props[prop];
            continue;
        }
        if (enumerability == "nonenum" && props[prop]["enum_"] == true) {
            delete props[prop];
        }
    }

    return Object.keys(props);
}
0
golem
function getNonEnumerableNonOwnPropertyNames( obj ) {
    var oCurObjPrototype = Object.getPrototypeOf(obj);
    var arReturn = [];
    var arCurObjPropertyNames = [];
    var arCurNonEnumerable = [];
    while (oCurObjPrototype) {
        arCurObjPropertyNames = Object.getOwnPropertyNames(oCurObjPrototype);
        arCurNonEnumerable = arCurObjPropertyNames.filter(function(item, i, arr){
            return !oCurObjPrototype.propertyIsEnumerable(item);
        })
        Array.prototype.Push.apply(arReturn,arCurNonEnumerable);
        oCurObjPrototype = Object.getPrototypeOf(oCurObjPrototype);
    }
    return arReturn;
}

使用例:

function MakeA(){

}

var a = new MakeA();

var arNonEnumerable = getNonEnumerableNonOwnPropertyNames(a);
0
Dmitry Ragozin