オブジェクトのプロパティとしてシングルトンにアクセスできない
オブジェクト経由でシングルトンにアクセス
何が起こったのでしょうか?
名前空間からアタッチされたプロパティにアクセスする構文を使用して、シングルトンにアクセスしました。
これはなぜ悪いのでしょうか?
シングルトンはこの方法ではアクセスできません。この式はundefinedと評価されます。
例
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 }
この警告を修正するには、シングルトンを使用するつもりであれば、ネームスペースの前にあるid
または property を削除してください。あるいは、アタッチされたプロパティにアクセスしたい場合は、タイプミスをチェックしてください。
© 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.