我有一个我在 PySide 中编写的具有 QML UI 的应用程序。我在 Python 中对 QAbstractListModel 进行了子类化:
class MyModel(QtCore.QAbstractListModel):
def __init__(self, parent=None):
QtCore.QAbstractListModel.__init__(self, parent)
self._things = ["foo", "bar", "baz"]
def rowCount(self, parent=QtCore.QModelIndex()):
return len(self._things)
def data(self, index, role=QtCore.Qt.DisplayRole):
if role == QtCore.Qt.DisplayRole:
return self._things[index.row()]
return None
我通过在主脚本中执行此操作将模型提供给我的 QML:
model = MyModel()
view.rootContext().setContextProperty("mymodel", model)
Qt 的文档说模型的角色名称用于访问来自 QML 的数据,并且可以将 QML 中的普通 DisplayRole 称为“显示”,因此我的 QML 有一个带有简单委托的 ListView,如下所示:
ListView {
anchors.fill: parent
model: mymodel
delegate: Component { Text { text: display } }
}
但是,当我这样做时,结果是file:///foo/bar/main.qml:28: ReferenceError: Can't find variable: display
.
在模型中设置自定义角色名称没有帮助。想法?