如何一次将 3 或 4 个变量推入 QML 中的数组列表

How can I push 3 or 4 variables into the array list in QML at a time

我是 qml 和 javascript 技术的新手。我需要有关阵列上的推送和弹出操作的示例。例如,如何一次将 3 个变量推送到 QML 中的数组列表中。我希望输出如下所示 [{“A001”,1,“项目 1”},{“A002”,2,“项目 2”}]。 我从示例代码开始,但无法完成 Component.onCompleted.

中的逻辑
Window {
visible: true
width: 640
height: 480
title: qsTr("Hello World")

property var object: ({})
property var list: []

property string str1: "A001"
property int value1: 1
property string item1: "Item1"

property string str2: "A002"
property int value2: 2
property string item2: "Item2"

Component.onCompleted: {
    //1. Frame the object {str1, value1, item1}
    //2. Push to the array using push operation
    //3. The output of the array to be [{"A001", 1, "Item1"}]

    //4. Frame the object {str2, value2, item2}
    //5. Push to the array using push operation
    //6. The output of the array to be [{"A001", 1, "Item1"},{"A002", 2, "Item2"}]
    
    //7. Do pop operation on the array
    //8. The output of the array to be [{"A001", 1, "Item1"}]

    //9. Do pop operation on the array
    //10. The output of the array to be []
}

}

您似乎需要一个对象数组。在 javascript 中,对象是 key/value 对。所以你必须像这样创建它们:

var obj1 = {"str": str1, "value": value1, "item": item1}
var obj2 = {"str": str2, "value": value2, "item": item2}

然后您可以将它们推入或弹出到您的数组中:

var arr = [];
arr.push(obj1);
arr.push(obj2);
arr.pop();
arr.pop();