繁体   English   中英

如何检查javascript对象是否具有某个属性

[英]How to check if a javascript object has a certain property

假设我有一个像这样的javascript对象:

window.config
config.UI = {
        "opacity": {
            "_type": "float",
            "_tag": "input",
            "_value": "1",
            "_aka": "opacity",
            "_isShow":"1"
 }

如何判断“不透明度”对象是否具有名为“_test”的属性? 喜欢

var c=config.ui.opacity;
for(var i in c)
{
   //c[i]=="_test"?
}

我怎么知道它是否也被分配了?

至少有三种方法可以做到这一点; 您使用哪一个很大程度上取决于您,有时甚至是风格问题,尽管存在一些实质性差异:

if..in

你可以使用if..in

if ("_test" in config.UI.opacity)

...因为在测试中使用时(与特殊的for..in循环相反), in测试中查看对象或其原​​型(或其原型的原型等)是否具有该名称的属性。

hasOwnProperty

如果要从原型中排除属性(在您的示例中并不重要),可以使用hasOwnProperty ,这是一个函数,所有对象都从Object.prototype继承:

if (config.UI.opacity.hasOwnProperty("_test"))

只需检索它并检查结果

最后,您可以检索属性(即使它不存在),并通过查看结果来决定如何处理结果; 如果你向一个对象询问它没有的属性的值,你将得到undefined

var c = config.UI.opacity._test;
if (c) {
    // It's there and has a value other than undefined, "", 0, false, or null
}

要么

var c = config.UI.opacity._test;
if (typeof c !== "undefined") {
    // It's there and has a value other than undefined
}

保守

如果config.UI可能根本没有opacity属性,那么你可以使所有这些更具防御性:

// The if..in version:
if (config.UI.opacity && "_test" in config.UI.opacity)

// The hasOwnProperty version
if (config.UI.opacity && config.UI.opacity.hasOwnProperty("_test"))

// The "just get it and then deal with the result" version:
var c = config.UI.opacity && config.UI.opacity._test;
if (c) { // Or if (typeof c !== "undefined") {

最后一个是有效的,因为与其他语言相比, &&运算符在JavaScript中特别强大; 这是奇怪的强大||的必然结果 运营商

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM