リスト以外のプロパティ

この警告カテゴリーはqmllintによって[non-list-property]

デフォルトの非リストプロパティに複数のオブジェクトを割り当てることはできません。

何が起こりましたか?

デフォルト・プロパティは複数のバインディングを持ちますが、デフォルト・プロパティ・タイプはリスト・タイプではなく、1つのバインディングしか想定していません。

これはなぜ悪いのでしょうか?

デフォルト・プロパティへのバインディングは、最後のバインディングを除いてすべて無視されます。これは、デフォルト・プロパティがリストであるべきであるか、同じプロパティへのバインディングが多すぎることを示唆しています。

リスト以外のデフォルト・プロパティを1つ持つコンポーネントMyComponent を宣言し、そのデフォルト・プロパティに3つの項目をバインドしてみましょう:

import QtQuick

Item {
    component MyComponent: QtObject {
        default property Item helloWorld
    }
    MyComponent {
        // first item bound to default property:
        Item { objectName: "first" } // will warn: Cannot assign multiple objects to a default non-list property [non-list-property]
        // second item bound to default property:
        Item { objectName: "second" } // not ok: default property was bound already
        // third item bound to default property:
        Item { objectName: "third" } // not ok: default property was bound already

        Component.onCompleted: console.log(helloWorld.objectName) // prints "third"
    }
}

この警告を修正するには、デフォルト・プロパティをリストで置き換えます:

import QtQuick

Item {
    component MyComponent: QtObject {
        default property list<Item> helloWorld
    }
    MyComponent {
        // first item bound to default property:
        Item { objectName: "first" } // ok: binding a first item to the list
        // second item bound to default property:
        Item { objectName: "second" } // ok: binding a second item to the list
        // third item bound to default property:
        Item { objectName: "third" } // ok: binding a third item to the list
    }
}

この警告を修正するには、デフォルト・プロパティをリストに置き換えてください:

import QtQuick

Item {
    component MyComponent: QtObject {
        default property Item helloWorld
    }
    MyComponent {
        Item { objectName: "first" } // ok: just one item bound to default property
    }
    MyComponent {
        Item { objectName: "second" } // ok: just one item bound to default property
    }
    MyComponent {
        Item { objectName: "third" } // ok: just one item bound to default 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.