寻找一种更简单的方法来检查是否有多个属性&对象中的方法未定义

发布于 2024-12-09 05:34:18 字数 345 浏览 1 评论 0原文

考虑以下代码:

    if(eform[funcName] !== undefined){
        if(eform[funcName].init !== undefined){
            //finally do something
        }
    }

我首先检查 eform 对象是否具有变量 funcName 指定的属性。如果是,那么我需要检查该属性是否具有 init 方法。

有没有办法将它们组合成一个 if 语句?或者也许有比这更优雅的东西?

Consider the following code:

    if(eform[funcName] !== undefined){
        if(eform[funcName].init !== undefined){
            //finally do something
        }
    }

I'm first checking to see if the eform object has the property specified by the variable funcName. If it does, then I need to check whether that property has an init method.

Is there any way to combine these into a single if statement? Or perhaps something even more elegant than that?

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

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

发布评论

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

评论(3

多像笑话 2024-12-16 05:34:18

使用短路评估:

if (eform[funcName] !== undefined && eform[funcName].init !== undefined)

如果 eform[funcName] 未定义,则永远不会检查 if false 和 eform[funcName].init 语句。根据偏好/可读性,以下内容也有效:

if (eform[funcName] && eform[funcName].init)

Using Short-Circuit evaluation:

if (eform[funcName] !== undefined && eform[funcName].init !== undefined)

If eform[funcName] is undefined the statement if false and eform[funcName].init is never checked. Depending on preference/readability this following is vaild as well:

if (eform[funcName] && eform[funcName].init)
半城柳色半声笛 2024-12-16 05:34:18

认为一个更好:

if(eform[funcName] !== undefined && eform[funcName].init !== undefined){
  //some code
}

如果第一个条件为假,则不会检查第二个条件。

think that one is better:

if(eform[funcName] !== undefined && eform[funcName].init !== undefined){
  //some code
}

if the first condition is false than the second condition wont be checked.

往昔成烟 2024-12-16 05:34:18

JS 有一种新的、优雅的方式来实现这一点 - 可选链接 运算符

它看起来像这样:

if (eform?[funcName]?.init !== undefined) {
  // do something
}

适用于所有现代浏览器。
但 babel 尚未原生添加对此操作的支持,并会引发编译错误。在这种情况下,babel 建议:

添加@babel/plugin-proposal-optional-chaining
(https://git.io/vb4Sk) 到 Babel 的“插件”部分
配置以启用转换。

JS has a new, elegant way to achieve this - The Optional Chaining operator

It looks like this:

if (eform?[funcName]?.init !== undefined) {
  // do something
}

Works with all modern browsers.
But babel has not yet added support for this op natively and throws a compilation error. In that case, babel suggests:

Add @babel/plugin-proposal-optional-chaining
(https://git.io/vb4Sk) to the 'plugins' section of your Babel
config to enable transformation.

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