Mit

Diese Warnkategorie wird von qmllint mit [with] geschrieben.

Mit Aussagen

Was ist passiert?

Die JavaScript-Anweisung with wurde verwendet.

Warum ist das schlecht?

With-Anweisungen können bei der Analyse von unqualifizierten Bezeichnern zu Fehlalarmen führen. Außerdem sind die with Anweisungen im aktuellen JavaScript-Standard als veraltet gekennzeichnet.

Beispiel

import QtQuick

Item {
    function f() {
        with (Math) {
            return PI
        }
    }
}

Um diese Warnung zu beheben, ersetzen Sie die Anweisung with durch eine destrukturierende Eigenschaft:

import QtQuick

Item {
    function f() {
        const { PI } = Math;
        return PI
    }
}

Hinweis: Weitere Ideen zum Ersetzen finden Sie hier.

© 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.