在 Qt QML 项目中可以使用Qt QSettings QML 版 Settings 方便数据持久化,具体使用可以参考Qt 文档,这里主要简单记录一下从Qt 5 升级到 Qt 6 后,没有创建指定的文件。在Qt 5中是使用 fileName 属性来指定文件路径,如下,能在 app 文件夹下面自动创建 qt_ui_config 文件
// Qt 5
import Qt.labs.settings 1.0
Settings {id: myAppSettingsfileName: applicationDir + "/qt_ui_config" property bool isEdit: falseproperty int menuIndex: 0property int menuPreIndex: 0category: "rightMenu"}
到 Qt 6 以后, 弃用了 fileName 属性,改用 location 属性,但有个坑,如果只是简单修改属性名,会发现指定的目录下找不到文件,但是能正常使用,这是因为 Qt 6 的 location 属性后面的路径中要添加前缀: “file:”
// Qt 6
import QtCore
Settings {id: myAppSettings// location: applicationDir + "/qt_ui_config" // failed location: "file:" + applicationDir + "/qt_ui_config" // okproperty bool isEdit: falseproperty int menuIndex: 0property int menuPreIndex: 0category: "rightMenu"}