我正在用c++开发QML应用程序,但我目前遇到了一个可能很简单的错误:
C: \Qt\5.2.1 \mingw48_32\include\QtCore \qvector.h:679:错误:与"operator=="不匹配(操作数类型为"ListModel"one_answers"ListModel)if(!(*--i==*--j))^
我的标题是:
#ifndef COMBOBOXUPDATE_H
#define COMBOBOXUPDATE_H
#include <QObject>
#include <QStringList>
#include <QString>
#include <QVector>
struct ListModel;
class ComboboxUpdate:public QObject
{
Q_OBJECT
Q_PROPERTY(QVector<ListModel> comboList READ comboList)
public:
ComboboxUpdate(QObject *parent = 0);
QVector<ListModel> comboList();
void setComboList( QVector<ListModel> &comboList);
private:
QVector<ListModel> m_comboList;
int m_count;
};
struct ListModel
{
ListModel();
ListModel(QString _text,int _Sqlid)
{
text=_text;
Sqlid=_Sqlid;
}
QString text;
int Sqlid;
};
#endif // COMBOBOXUPDATE_H
错误发生在实现文件中的代码区域:
void ComboboxUpdate::setComboList( QVector<ListModel> &comboList)
{
if (m_comboList != comboList)
{
m_comboList = comboList;
}
}
我不明白为什么会出现这个问题。我的主要目标是使用ListElement
之类的东西从c++端填充组合框。我可以使用QStringList
成功填充。但我想像ListElement
一样填补空缺。例如:
ComboBox {
model: ListModel {
ListElement {sqlid:"1"; text:"Pansi"}
ListElement {sqlid:"2"; text:"Rose"}
ListElement {sqlid:"3"; text:"Clips"}
}
anchors.fill: parent
}
在QML方面,该模型在ComboBox
中显示文本,并将值存储到sqlite中。我如何在c++方面做到这一点?
您需要为类ListModel
提供operator==
。例如:
struct ListModel
{
bool operator==(const ListModel& other) const {
return other.text == text && other.Sqlid == Sqlid;
}
};