if(typeof(element) !== "undefined" && !element ){ // I tried this, but not work
if(element.objectName === "right"){ // Get error in this line
//....
}
}
由于此错误TypeError: Cannot read property 'objectName' of null
,我需要检查元素是否为空。那么qml中可以使用isNull
这样的函数吗?