Kein Zugriff auf Singleton als Eigenschaft eines Objekts möglich

Zugriff auf Singleton über Objekt

Was ist passiert?

Sie haben auf ein Singleton mit der Syntax für den Zugriff auf angehängte Eigenschaften aus einem Namespace zugegriffen.

Warum ist das schlecht?

Auf Singletons kann nicht auf diese Weise zugegriffen werden. Der Ausdruck wird als undefiniert ausgewertet.

Beispiel

import QtQml
import QtQuick as QQ

QtObject {
    id: root
    // Cannot access singleton as a property of an object. Did you want to access an attached object?
    property var singletonAccess: root.QQ.Application.platform
}

Um diese Warnung zu beheben, entfernen Sie das id oder die Eigenschaft vor dem Namespace, wenn Sie beabsichtigen, das Singleton zu verwenden. Oder überprüfen Sie auf Tippfehler, wenn Sie auf eine angehängte Eigenschaft zugreifen wollten.

import QtQml
import QtQuick as QQ

QtObject {
    id: root
    property var singletonAccess: QQ.Application.platform
    property bool attachedPropertyAccess: root.QQ.ListView.isCurrentItem
}

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.