如何在加载器中中止加载组件?



我有一个Loader对象,它加载了一些非常重的组件。某些事件到达加载的中间,需要加载停止并返回以清空Loader。可能吗?

中止对象创建

如Qt所述,有三种方法可以卸载/中止对象实例化:

  1. Loader.active设置为false
  2. Loader.source设置为空字符串
  3. Loader.sourceComponent设置为undefined

异步行为

为了能够在加载过程中更改这些属性,应trueLoader.asynchronous,否则 GUI 线程正忙于加载对象。您还需要为QQmlEngineQQmlIncubationController,以控制用于对象孵化的空闲时间。没有这样的控制器Loader.asynchronous没有任何影响。请注意,如果场景包含QQuickWindowQQmlApplicationEngine会自动安装默认控制器。

错误

直到上次测试的Qt版本(Qt 5.8.0,5.9.0测试版),在中止未完成的对象孵化时存在严重的内存泄漏(至少在某些情况下,包括derM答案中的示例),导致大型组件的内存使用量快速增加。创建错误报告,包括建议的解决方案。

根据错误报告,这应该在Qt版本5.15中修复(未测试)。

我不知道你的 issu 是什么,那些在加载器完成之前被销毁的对象,但也许问题就在那里?如果没有,这应该有效: 如果它没有帮助,请在您的问题中添加一些代码,以重现您的问题。

主.qml

import QtQuick 2.7
import QtQuick.Controls 2.0
ApplicationWindow {
id: root
visible: true
width: 400; height: 450
Button {
text: (complexLoader.active ? 'Loading' : 'Unloading')
onClicked: complexLoader.active = !complexLoader.active
}
Loader {
id: complexLoader
y: 50
width: 400
height: 400
source: 'ComplexComponent.qml'
asynchronous: true
active: false
// visible: status === 1
}
BusyIndicator {
anchors.fill: complexLoader
running: complexLoader.status === 2
visible: running
}
}

ComplexComponent.qml

import QtQuick 2.0
Rectangle {
id: root
width: 400
height: 400
Grid {
id: grid
anchors.fill: parent
rows: 50
columns: 50
Repeater {
model: parent.rows * parent.columns
delegate: Rectangle {
width: root.width / grid.columns
height: root.height / grid.rows
color: Qt.rgba(Math.random(index),
Math.random(index),
Math.random(index),
Math.random(index))
}
}
}
}

相关内容

  • 没有找到相关文章

最新更新