5

我想使用实例访问静态属性。像这样的东西

function User(){
    console.log('Constructor: property1=' + this.constructor.property1) ;
}
User.prototype = {
    test: function() {
        console.log('test: property1=' + this.constructor.property1) ;
    }
}    
User.property1 = 10 ;   // STATIC PROPERTY

var inst = new User() ;
inst.test() ;

这是jsfiddle中的相同代码

在我的情况下,我不知道实例属于哪个类,所以我尝试使用实例“构造函数”属性访问静态属性,但没有成功:(这可能吗?

4

3 回答 3

5

所以我尝试使用实例“构造函数”属性访问静态属性

这就是问题所在,您的实例没有constructor属性——您已经覆盖了整个.prototype对象及其默认属性。相反,使用

User.prototype.test = function() {
    console.log('test: property1=' + this.constructor.property1) ;
};

而且您也可以只使用User.property1via 代替绕道this.constructor。此外,您不能确保您可能要调用此方法的所有实例的constructor属性都指向User- 因此更好地直接和明确地访问它。

于 2013-05-02T18:26:59.553 回答
0
function getObjectClass(obj) {
    if (obj && obj.constructor && obj.constructor.toString) {
        var arr = obj.constructor.toString().match(
            /function\s*(\w+)/);

        if (arr && arr.length == 2) {
            return arr[1];
        }
    }

    return undefined;
}

function User(){
     console.log('Constructor: property1=' + this.constructor.property1) ;
 }

User.property1 = 10 ;

var inst = new User() ;

alert(getObjectClass(inst));

http://jsfiddle.net/FK9VJ/2/

于 2013-05-02T18:28:01.667 回答
0

也许你可以看看:http: //jsfiddle.net/etm2d/

User.prototype = {
test: function() {
    console.log('test: property1=' + this.constructor.property1) ;
    }
} 

似乎有问题,虽然我还没有弄清楚为什么。

于 2013-05-02T18:43:48.200 回答