How do you check if a property is undefined in qml?
Try:
text: text ? text : "default text"
"undefined"
is just a string representation of a reference not referencing anything, just like None
, or NULL
in other languages.
===
is strict comparison operator, you might want to read this thread: https://stackoverflow.com/questions/523643/difference-between-and-in-javascript
import QtQuick 2.3
import QtQuick.Controls 1.2
Button {
id: myButton
text: text ? text : "default text"
}
This answer throws a warning for me.
QML Button: Binding loop detected for property "text"
Changing text
to modelText
instead throws an error.
ReferenceError: modelText is not defined
This stops the Javascript execution for me; i.e. the next line isn't called.
Via Javascript
The same happens when setting it via Javascript, but is quite verbose.
import QtQuick 2.3
import QtQuick.Controls 1.2
Button {
id: myButton
text: "default text"
Component.onCompleted: {
if (modelText !== "undefined") {
myButton.text = modelText;
}
}
}
Using typeof
The typeof
operator mutes the error and works as expected.
import QtQuick 2.3
import QtQuick.Controls 1.2
Button {
id: myButton
text: "default text"
Component.onCompleted: {
if (typeof modelText !== "undefined") {
myButton.text = modelText;
}
}
}
To compare with undefined you write text === undefined
. This will evaluate to false if text
is null
.
If you want check if value is present (i.e., check for both undefined
and null
), use it as condition in if statement or ternary operator. If you need to store result of comparison as a boolean value, use var textPresent = !!text
(though double !
might appear confusing to one reading the code).