hasOwnProperty 的意外行为
Unexpected behaviour of hasOwnProperty
我正在编写一个函数来检查对象是否包含 'id' 或 'serif:id' 等键。不幸的是,这不能正常工作。
function returnIdPreferSerifId(object) {
if (object.hasOwnProperty('serif:id' === true)) {
return object['serif:id'];
} else if (object.hasOwnProperty('id' === true)) {
return object.id;
} else {
console.log(object)
console.log(object.hasOwnProperty('serif:id' === true))
console.log(object.hasOwnProperty('id' === true))
throw `ID not found in Layer 1!`;
}
}
测试对象为:
{
id: 'ska',
d: 'M255.848,145.321l19.839,0.054l12.677,8.62l6.085,-8.62l-8.62,-29.41l-30.488,13.637l0.507,15.719Z',
style: 'fill:rgb(187,222,251);stroke:white;stroke-width:1.33px;'
}
我希望函数 return 'ska' 因为它是对象 ID。
相反,控制台显示
false
false
path\to\module\modules\svgHandler.js:135
throw `ID not found in Layer 1!`;
^
ID not found in Layer 1!
提前感谢您的帮助!
你的括号放错地方了:
if (object.hasOwnProperty('serif:id' === true))
应该是
if (object.hasOwnProperty('serif:id') === true)
如果你愿意,你可以去掉 === true
if (object.hasOwnProperty('serif:id'))
object.hasOwnProperty('serif:id' === true)
将像下面这样计算。
object.hasOwnProperty(false)
false //if false is not key of object.
您应该将 === false
移到 ()
之外
if (object.hasOwnProperty('serif:id') === true)
或者您不需要在 if 语句中与 true
进行比较。
if (object.hasOwnProperty('serif:id'))
我正在编写一个函数来检查对象是否包含 'id' 或 'serif:id' 等键。不幸的是,这不能正常工作。
function returnIdPreferSerifId(object) {
if (object.hasOwnProperty('serif:id' === true)) {
return object['serif:id'];
} else if (object.hasOwnProperty('id' === true)) {
return object.id;
} else {
console.log(object)
console.log(object.hasOwnProperty('serif:id' === true))
console.log(object.hasOwnProperty('id' === true))
throw `ID not found in Layer 1!`;
}
}
测试对象为:
{
id: 'ska',
d: 'M255.848,145.321l19.839,0.054l12.677,8.62l6.085,-8.62l-8.62,-29.41l-30.488,13.637l0.507,15.719Z',
style: 'fill:rgb(187,222,251);stroke:white;stroke-width:1.33px;'
}
我希望函数 return 'ska' 因为它是对象 ID。 相反,控制台显示
false
false
path\to\module\modules\svgHandler.js:135
throw `ID not found in Layer 1!`;
^
ID not found in Layer 1!
提前感谢您的帮助!
你的括号放错地方了:
if (object.hasOwnProperty('serif:id' === true))
应该是
if (object.hasOwnProperty('serif:id') === true)
如果你愿意,你可以去掉 === true
if (object.hasOwnProperty('serif:id'))
object.hasOwnProperty('serif:id' === true)
将像下面这样计算。
object.hasOwnProperty(false)
false //if false is not key of object.
您应该将 === false
移到 ()
if (object.hasOwnProperty('serif:id') === true)
或者您不需要在 if 语句中与 true
进行比较。
if (object.hasOwnProperty('serif:id'))