ReferenceError:QML中未定义“something”

时间:2014-01-29 11:56:09

标签: python qt qml python-3.3 pyqt5

我有这样的Main.qml文件:

import QtQuick 2.0    

Rectangle {
    color: ggg.Colors.notificationMouseOverColor
    width: 1024
    height: 768
}

在python文件中,我有这个(我用的形式是PyQt5):

App = QGuiApplication(sys.argv)
View = QQuickView()
View.setSource(QUrl('views/sc_side/Main.qml'))
Context = View.rootContext()

GlobalConfig = Config('sc').getGlobalConfig()
print (GlobalConfig, type(GlobalConfig))
Context.setContextProperty('ggg', GlobalConfig)

View.setResizeMode(QQuickView.SizeRootObjectToView)
View.showFullScreen()
sys.exit(App.exec_())

这个python代码打印这个配置:

{'Colors': {'chatInputBackgroundColor': '#AFAFAF', 'sideButtonSelectedColor': '#4872E8', 'sideButtonTextColor': '#787878', 'sideButtonSelectedTextColor': '#E2EBFC', 'sideButtonMouseOverColor': '#DDDDDD', 'buttonBorderColor': '#818181', 'notificationMouseOverColor': '#383838', }} <class 'dict'>

当我运行此代码时,我的矩形颜色正确更改,但我有这个错误:

file:///.../views/sc_side/Main.qml:6: ReferenceError: ggg is not defined

但是我不知道为什么会发生这个错误,我怎么能解决这个错误?

2 个答案:

答案 0 :(得分:13)

您需要在调用View.setSource 之前设置上下文属性,否则在读取qml文件时,属性ggg确实未定义。

试试这个:

App = QGuiApplication(sys.argv)
View = QQuickView()
Context = View.rootContext()

GlobalConfig = Config('sc').getGlobalConfig()
print (GlobalConfig, type(GlobalConfig))
Context.setContextProperty('ggg', GlobalConfig)

View.setSource(QUrl('views/sc_side/Main.qml'))    
View.setResizeMode(QQuickView.SizeRootObjectToView)
View.showFullScreen()
sys.exit(App.exec_())

免责声明:在不知道Config是什么的情况下,我不能说没有任何其他修改它是否真的有效。

答案 1 :(得分:7)

你必须在加载QML文件之前定义context属性, 它更好,因为它避免了警告和上下文重新加载。

如果您之后真的被迫这样做,只需在QML代码中添加一个安全性:

color: (typeof (ggg) !== "undefined" ? ggg.Colors.notificationMouseOverColor : "transparent");

然后,当你设置了context属性时,它将重新加载上下文(不推荐),但至少不会发生错误。