prz*_*ekk 1 python pyqt python-3.x qsettings pyqt5
我ini在PyQt5应用程序中从文件加载布尔值时遇到问题。
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import sys
from PyQt5 import QtCore
from PyQt5.QtCore import QSettings, QVariant
from PyQt5.QtWidgets import (
QApplication, QCheckBox, QDialog, QGridLayout,
QLabel, QLayout, QPushButton
)
class Settings(QDialog):
"settings GUI"
_settings = None
def __init__(self):
super(Settings, self).__init__()
self._ui()
def _ui(self):
self._chk_test = QCheckBox()
self._chk_test.setText("test checkbox")
self._settings = QSettings("settings.ini", QSettings.IniFormat)
self._settings.setFallbacksEnabled(False)
# load configuration
self._chk_test.setChecked(
self._bool(self._settings.value("test_value", True)))
# save settings
btn_save = QPushButton("save")
btn_save.clicked.connect(self._save_settings)
# setting layouts
grid_layout = QGridLayout()
grid_layout.addWidget(self._chk_test, 0, 0, 1, 1)
grid_layout.addWidget(btn_save, 0, 1, 1, 1)
grid_layout.setSizeConstraint(QLayout.SetFixedSize)
grid_layout.setHorizontalSpacing(100)
grid_layout.setVerticalSpacing(5)
self.setWindowTitle("Boolean")
self.setLayout(grid_layout)
self.show()
def _save_settings(self):
self._settings.setValue("test_value", self._chk_test.isChecked())
self.close()
def _bool(self, str):
if str == "true":
return True
else:
return False
if __name__ == "__main__":
app = QApplication(sys.argv)
ui = Settings()
sys.exit(app.exec_())
Run Code Online (Sandbox Code Playgroud)
当我尝试使用时加载布尔值
self._settings.value("test_value", True).toBool()
Run Code Online (Sandbox Code Playgroud)
要么
QVariant(self._settings.value("test_value", True)).toBool()
Run Code Online (Sandbox Code Playgroud)
我收到AttributeError:
'str' / 'QVariant' object has no attribute 'toBool()'.
Run Code Online (Sandbox Code Playgroud)
我已经编写了自定义_bool方法,但是我想知道是否有更好的方法来解决它。
他们添加第三个参数type=来设置结果类型。这样就可以使用type=bool并获取Python True/False而不是字符串"true"/"false"
a = self._settings.value("test_value", True, type=bool)
print('a:', type(a), a)
b = self._settings.value("test_value", True)
print('b:', type(b), b)
Run Code Online (Sandbox Code Playgroud)
结果
a: <class 'bool'> True
b: <class 'str'> true
Run Code Online (Sandbox Code Playgroud)
在Google中找到:https://riverbankcomputing.com/pipermail/pyqt/2011-January/029032.html
- 在QSettings.value()中添加了可选的type关键字参数,以允许指定返回值的类型。
| 归档时间: |
|
| 查看次数: |
922 次 |
| 最近记录: |