def delete(self,new_window): # 获取输入框中的数据 data = self.input_box.text().split(",") if len(data) != 2 or not all(map(lambda x: x.strip(), data)): new_window.status_label.setText("输入格式错误!请按照 部门/姓名/性别/职位/工号/状态,对象 的格式输入。") return # 执行 SQL 删除语句 sql = "DELETE FROM Staff WHERE {} = ?".format(data[0]) try: self.cursor.execute(sql, (data[1],)) self.cnxn.commit() new_window.status_label.setText("数据删除成功!") except: new_window.status_label.setText("数据删除失败!")中Traceback (most recent call last): File "D:\360MoveData\Users\15312\Desktop\SQL\t.py", line 204, in delete new_window.status_label.setText("数据删除成功!") ^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'bool' object has no attribute 'status_label' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\360MoveData\Users\15312\Desktop\SQL\t.py", line 206, in delete new_window.status_label.setText("数据删除失败!") ^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'bool' object has no attribute 'status_label'
时间: 2023-11-13 16:17:40 浏览: 78
python 中-self-标识符和self标识符.docx
看起来 `new_window` 参数传递的是一个布尔值,而不是一个窗口对象,因此程序报错。检查一下在调用 `delete()` 函数时传递给 `new_window` 参数的对象是否正确,需要确保传递的是一个窗口对象,该对象应该有一个名为 `status_label` 的标签或控件。如果传递的参数不正确,需要修改调用 `delete()` 函数的代码。
阅读全文