我正在为我的n9编写应用程序并且存在数据库问题。我没有在应用程序中使用main.cpp或其他c ++文件。我使用qml中的javscript创建,删除,添加等数据到数据库。现在我只是输出一个包含所有条目的字符串。一切正常。但现在我想将数据库中的条目显示为ListView。 我怎么能这样做?
答案 0 :(得分:0)
您可以动态地为ListView创建模型。像这样的东西:
import QtQuick 2.0
import "main.js" as Main
Rectangle {
id: root
ListView {
width: 180; height: 200
model: Main.createModel(root)
delegate: Text {
text: name + ": " + number
}
}
}
和main.js
function createModel(parent) {
var s = 'import QtQuick 2.0; ListModel {\n';
var data = ["a", "b"]; // your data from database will be here
for(var x in data) {
var s2 = "ListElement {name: \"" + x+ "\"; number: \"" + x + "\" }\n";
s += s2;
}
s += "}\n";
console.log(s);
return Qt.createQmlObject(s, parent, "mainModel");
}