我通常通过询问来测试一个字符串是否是对象中的键:
var foo:Object = {bar:"bar", bah:["bah","bah1"]};
var str:String = "boo";
if(foo[str]) // do something
但是如果str ==“constructor”它会做一些事情 - 因为foo [“constructor”]无论如何都会返回true。
测试字符串是否是对象的键的最佳方法是什么 - 并且对于构造函数不返回true?
一些例子:
var foo:Object = {bar:"bar", bah:["bah","bah1"]};
trace('foo["bar"]: ' + foo["bar"]);
trace('foo["bah"]: ' + foo["bah"]);
trace('foo["constructor"]: ' + foo["constructor"]);
trace('foo["bar"] == true: ' + (foo["bar"] == true));
trace('foo["bah"] == true: ' + (foo["bah"] == true));
trace('foo["constructor"] == true: ' + (foo["constructor"] == true));
if(foo["bar"]){
trace("foo:bar");
}
if(foo["bah"]){
trace("foo:bah");
}
if(foo["constructor"]){
trace("foo:constructor");
}
trace('"constructor" in foo: ' + ("constructor" in foo));
痕迹:
/*
foo["bar"]: bar
foo["bah"]: bah,bah1
foo["constructor"]: [class Object]
foo["bar"] == true: false
foo["bah"] == true: false
foo["constructor"] == true: false
foo:bar
foo:bah
foo:constructor
"constructor" in foo: true
*/
答案 0 :(得分:2)
如果它是一个具体的类实现,你应该能够在大多数情况下使用hasOwnProperty
:
var hasProperty : Boolean = foo.hasOwnProperty("bar");
显然,对于匿名对象也应该可以正常工作(感谢让我知道!)。