gpt4 book ai didi

javascript - 如何附加到类似 dict 的 QML-List?

转载 作者:行者123 更新时间:2023-11-30 11:36:09 28 4
gpt4 key购买 nike

我想将键值对动态添加到列表中,我试过这段代码:

ListModel{
id : myListModel
property var results : {"One": "#ff0000", "Two" : "#ff00ff"}

...

function addstuff() {
var what = "three";
results.append ( {what: "#0000ff"} )
}
}

但我得到“TypeError:对象 [object Object] 的属性‘append’不是函数”。我该如何解决?

最佳答案

您可以使用括号表示法作为 property accessor为对象。

function addstuff() {
var what = "three";
results[what] = "#0000ff";
}

关于javascript - 如何附加到类似 dict 的 QML-List?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44333966/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com