是否有 JavaScript 对象的万能键之类的东西?

发布于 2024-08-23 13:05:17 字数 447 浏览 8 评论 0原文

考虑以下 javascript 示例:

var myobj = {   func1: function() { alert(name in this) },
                func2: function() { alert(name in this) },
                func3: function() { alert(name in this) }
}

myobj.func2(); // returns true
myobj.func4(); // undefined function

是否可以为 myobj 创建一个“catch-all”键,如果没有定义键/函数(如 func4() 中所示),该键将被调用code>),同时保留 myobj.functionCall() 格式?

Considering the following javascript example:

var myobj = {   func1: function() { alert(name in this) },
                func2: function() { alert(name in this) },
                func3: function() { alert(name in this) }
}

myobj.func2(); // returns true
myobj.func4(); // undefined function

Is it possible to create a 'catch-all' key for myobj that will get called if there is no key/function defined (as in func4()) while retaining the myobj.functionCall() format?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倾城花音 2024-08-30 13:05:17

您可以使用代理和 getter 函数创建带有“通配符”或“catch-all”键的 JavaScript 对象。与提供的解决方案不同,代理应该在几乎任何环境中工作,包括 Node.js

var foo = new Object()

var specialFoo = new Proxy(foo, {
    get(target,name) {
        // do something here
        return name
    }
})

console.log(specialFoo.blabla) // this will output "blabla"

如果您希望属性可调用,只需返回一个函数:

var specialFoo = new Proxy(foo, {
    get(target,name) {
        return function() {
            console.log('derp')
            return name
        }
    }
})


specialFoo.callMe() // this will print derp

详细信息:mozilla 文档

You can create a JavaScript object with 'wildcard' or 'catch-all' keys using a Proxy and a getter function. Unlike the solutions provided, a Proxy should work in just about any environment, including Node.js

var foo = new Object()

var specialFoo = new Proxy(foo, {
    get(target,name) {
        // do something here
        return name
    }
})

console.log(specialFoo.blabla) // this will output "blabla"

If you want the properties to be callable, simply return a function:

var specialFoo = new Proxy(foo, {
    get(target,name) {
        return function() {
            console.log('derp')
            return name
        }
    }
})


specialFoo.callMe() // this will print derp

Details: documentation on mozilla

千寻… 2024-08-30 13:05:17

您正在寻找__noSuchMethod__
所有属性的 JavaScript getter

You're looking for __noSuchMethod__:
JavaScript getter for all properties

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文