- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
尝试使用 QTextEdit 小部件的内置“查找”功能,但当我尝试从 QLineEdit 小部件传递文本时,出现以下错误:
Traceback (most recent call last):
File "C:\SVN\Gocator\Trunk\Gocator\GoPy\Scripts\testfind.pyw", line 52, in on_find_button_clicked
self.fileEdit.find(self.findLine.text)
TypeError: QTextEdit.find(str, QTextDocument.FindFlags options=0): argument 1 has unexpected type 'builtin_function_or_method'
我已经查看了 QTextEdit 类的文档,内容不多,但我不明白为什么它会给我这个错误。有趣的是,如果我在 find() 调用中将 QLineEdit 文本属性的引用替换为字符串文字(例如“What”)(第 52 行:self.fileEdit.find(self.findLine.text)),它会起作用。
我的测试代码非常简单,所以我认为这只是我在我眼前看不到的东西。有人看到我哪里出错了或者甚至遇到了同样的问题吗?这是我的测试脚本(我只安装了 Qt4):
#!/usr/bin/env python
# Needs Qt5 (recommended) or Qt4
# PyQt5: run pip3 install pyqt5
# PyQt4: from http://www.riverbankcomputing.com/software/pyqt/download
import shelve
import sys
sys.path.append('../GoPy')
sys.path.append('../../GoPy')
from PyQt4.QtCore import *
from PyQt4.QtGui import *
class ControlEngine:
def __init__(self):
self.shelf = shelve.open("ui_control.shelf")
class MainWindow(QWidget):
def __init__(self):
QWidget.__init__(self)
self.engine = ControlEngine()
self.create_ui()
def create_ui(self):
mainLayout = QVBoxLayout()
# View group
viewGroup = QGroupBox("File View")
viewLayout = QVBoxLayout()
self.fileEdit = QTextEdit("Today at Safeway, here's what we have for you.")
self.fileEdit.setFont(QFont("Courier New", 10))
viewLayout.addWidget(self.fileEdit)
self.findButton = QPushButton("Find Next Word")
self.findButton.clicked.connect(self.on_find_button_clicked)
self.findLine = QLineEdit("What")
viewLayout.addWidget(self.findLine)
viewLayout.addWidget(self.findButton)
viewGroup.setLayout(viewLayout)
mainLayout.addWidget(viewGroup)
self.setLayout(mainLayout)
self.fileEdit.moveCursor(1)
@pyqtSlot(int, int)
def on_find_button_clicked(self):
self.fileEdit.find(self.findLine.text)
class App(QApplication):
def __init__(self, argv):
QApplication.__init__(self, argv)
def start(self):
mainWindow = MainWindow()
self.mainWindow = mainWindow
mainWindow.resize(300, 300)
mainWindow.setWindowTitle("Test Find")
mainWindow.show()
return self.exec_()
def main():
app = App(sys.argv)
sys.exit(app.start())
if __name__ == '__main__':
main()
最佳答案
改变这个
self.fileEdit.find(self.findLine.text)
至
self.fileEdit.find(self.findLine.text())
因为它是函数而不是属性:)
关于使用 QTextEdit.find() 时出现 Python pyqt 错误 : unexpected type 'builtin_function_or_method' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43564713/
我将 Celery 与 Flask 和 SQLAlchemy 一起使用将一些字符串存储到数据库中。一切正常,但是当我创建数据库类时: class Locations(db.Model): id
我有以下代码: x = [[],[]] y = [[],[]] for a in range(36): x.append[0](a) x.append[1](a) for l in r
我正在尝试打印此 json 中的所有汽车: { "stuff": [ { "car" : 1, "color" : "blue"
我知道 Python 是一种动态语言,但下面的代码让我很困扰。 我有下面的简单程序,它有一些辅助函数来包装命令执行。 EventLoaderToVerticaHelper 是一个有两个方法的辅助类,所
def binary_search(li, targetValue): low, high = 0, len[li] #error on this line while low ta
我试图测试一些东西,以便我可以进行 python 文本冒险,但它不起作用。这是代码: calories = [3] fooland= ("fooland") area=fooland joint= (
最后一行给我一个错误 check_alert_json = [ ] for k in check_job_stats_json.keys(): if : check_aler
您好,我正在尝试定义一个返回打乱列表 l1 的函数,而不使用 random.shuffle 方法更改原始列表 l,但我收到此错误消息: builtin_function_or_method 对象没有属
我有一个奇怪的问题, 我已经创建了以下代码来随机生成 1 和 x 之间的数字,增量为 1 并存储它们 import random bootstrap_node_list_recieved = [] #
当我运行下面的代码时,我得到这个错误“main loop 'builtin_function_or_method' object is not iterable”: 我有搜索 stackoverflo
我有以下代码: def search(): os.chdir("C:/Users/Luke/Desktop/MyFiles") files = os.listdir(".")
elif( listb[0] == "-test"): run_all.set("testview") listb.pop[0] ERROR: Exception in Tkinter
当我运行这段代码时,Python 解释器出现了一个奇怪的错误: def make_map(): map = [[Tile(0, 0) for col in range(MAP_WIDTH)]
是否可以从 builtin_function_or_method 中检索 func_code 对象?即从 time.time() import time dir(time.time) 不包含函数对象
我在运行我的程序时收到一个奇怪的错误?我不确定为什么它不让我休眠。 Traceback (most recent call last): Not an add minute at all. Fil
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
当我尝试在我的程序中使用它时,它说存在属性错误 'builtin_function_or_method' object has no attribute 'replace' 但我不明白为什么。 def
代码如下: The_Start = [1,1] The_End = [1, 1] for z in range(20): for x in range(len(The_Start) - 1):
我在训练 MNIST 数据时收到此错误,csv 文件来自 Kaggle。有人可以告诉我哪里错了吗?这是我的代码。 PyTorch的版本是0.4.0。 import numpy as np import
我在尝试执行 Python 程序时不断收到此错误。该程序的要点是不断滚动一组骰子,直到用户输入小于 0 的数字。 import random num_sixes = 0 num_sevens = 0
我是一名优秀的程序员,十分优秀!