我正在玩QSqlQueryModel,但我现在完全陷入困境.
我整天都在寻找解决方案,但到目前为止还没有运气.
我的工作是它从我的sqlite数据库中提取数据但由于某些原因我无法在我的listview中显示它.看起来我的角色名称不存在.
我得到的消息就像…… ReferenceError:我没有定义id,因为我从数据库中取出了每一行.
我用了一个例子:http://qt-project.org/wiki/How_to_use_a_QSqlQueryModel_in_QML
我试过这两个例子,但我总是遇到同样的问题.
我的ccp文件看起来像这样……
#include "artistssqlmodel.h"
const char* ArtistsSqlModel::COLUMN_NAMES[] = {
"id",
"word",
NULL
};
const char* ArtistsSqlModel::SQL_SELECT = "SELECT id, word FROM dictionary LIMIT 5";
ArtistsSqlModel::ArtistsSqlModel(QObject *parent) :
QSqlQueryModel(parent)
{
mydb=QSqlDatabase::addDatabase("QSQLITE");
QString dbPath = "E://mydb.db";
mydb.setDatabaseName(dbPath);
connectToDb();
int idx = 0;
QHash<int, QByteArray> roleNames;
while( COLUMN_NAMES[idx]) {
roleNames[Qt::UserRole + idx + 1] = COLUMN_NAMES[idx];
idx++;
}
//roleNames(roleNames);
refresh();
}
void ArtistsSqlModel::connectToDb()
{
//QString bla = "Default";
if(!mydb.open())
{
qDebug() << "Database didnt open";
}
else
{
qDebug() << "Your database is open";
}
}
void ArtistsSqlModel::refresh()
{
this->setQuery(SQL_SELECT);
}
QVariant ArtistsSqlModel::data(const QModelIndex &index, int role) const
{
QVariant value = QSqlQueryModel::data(index, role);
if(role < Qt::UserRole)
{
value = QSqlQueryModel::data(index, role);
}
else
{
int columnIdx = role - Qt::UserRole - 1;
QModelIndex modelIndex = this->index(index.row(), columnIdx);
value = QSqlQueryModel::data(modelIndex, Qt::DisplayRole);
}
return value;
}
我的qml文件看起来像这样
import QtQuick 2.2
import QtQuick.Window 2.1
Window {
visible: true
width: 800
height: 800
ListView{
anchors.fill:parent
model:artistsModel
delegate: Item{
width:parent.width
height: width/10
Text {
id: name
text: word
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
anchors.fill:parent
}
}
}
}
我希望我提供了足够的信息,我希望有人知道我做错了什么.我是qt和c的新手,但通常我可以用一些研究来解决问题.
这次我完全陷入困境,我需要找到一种方法将数据从我的sqlite数据库中获取到我的listviews中.
编辑:
感谢这里的回复是所有其余的代码(这些是我得到的文件)
artistssqlmodel.h文件
#ifndef ARTISTSSQLMODEL_H
#define ARTISTSSQLMODEL_H
#include <QObject>
#include <QSqlQueryModel>
#include <QDebug>
class ArtistsSqlModel : public QSqlQueryModel
{
Q_OBJECT
public:
explicit ArtistsSqlModel(QObject *parent);
void refresh();
QVariant data(const QModelIndex &index, int role) const;
void connectToDb();
signals:
public slots:
private:
const static char* COLUMN_NAMES[];
const static char* SQL_SELECT;
QSqlDatabase mydb;
};
#endif // ARTISTSSQLMODEL_H
和main.cpp
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QtQml>
#include "artistssqlmodel.h"
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
QQmlContext *context = engine.rootContext();
ArtistsSqlModel *artistsSqlModel = new ArtistsSqlModel( qApp);
context->setContextProperty("artistsModel", artistsSqlModel);
engine.load(QUrl(QStringLiteral("qrc:///qml/main.qml")));
return app.exec();
}
最佳答案
It looks like my rolenames do not exist
究竟.您没有定义QML知道要查找的角色名称.你得到这个例子的维基已经过时了.公开模型角色名称的“新”方式是重新实现QAbstractItemModel::rolenames()方法.将角色名称定义移动到它:
QHash<int, QByteArray> ArtistsSqlModel::rolenames() const
{
int idx = 0;
QHash<int, QByteArray> roleNames;
while( COLUMN_NAMES[idx]) {
roleNames[Qt::UserRole + idx + 1] = COLUMN_NAMES[idx];
idx++;
}
return roleNames;
}
顺便说一句,如果你还没有使用,我建议你使用the new Qt documentation.我认为比旧的更清晰,更有条理.
我希望这对你有帮助.