javascript:如何访问静态属性

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

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中的相同代码

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

最佳答案

so I tried to access the static property using the instance ‘constructor’ property

这就是问题,你的实例没有构造函数属性 – 你已经覆盖了整个.prototype对象及其默认属性.相反,使用

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

你也可以通过this.constructor使用User.property1而不是绕道而行.此外,您无法确保您可能希望调用方法的所有实例都将其构造函数属性指向User – 因此可以更好地直接和显式地访问它.

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ "TOC" 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...