def __init__(self,parent_window): parent_window.destroy() # 销毁子界面 self.window = tk.Tk() self.window.title('学生清单') self.window.geometry('1200x600+70+50') db = pymysql.connect(host="localhost", user="root", passwd="123456", db="room_db") cursor = db.cursor() # 使用cursor()方法获取操作游标 sql = "SELECT * FROM 学生住宿信息表" try: cursor.execute(sql) # 执行sql语句 results = cursor.fetchall() for row in results: self.id = '学号: ' + row[0] self.name = '姓名: ' + row[1] self.gender = '性别: ' + row[2] self.age = '年龄: ' + row[3] self.num = '电话:' + row[4] self.build = '公寓号:' + row[5] self.room = '宿舍号:' + row[6] db.commit() Label(self.window, text=self.id + "\t" + self.name + "\t" + self.gender + "\t" +self.age + "\t" +self.num+ "\t"+self.build + "\t" + self.room, font=('楷体', 18)).pack(pady=5) except: db.rollback() # 发生错误时回滚 messagebox.showinfo('警告!', '数据库连接失败!') db.close() # 关闭数据库连接 self.right_top_button4 = ttk.Button(text='返回', width=20, command=self.back).pack() self.window.protocol("WM_DELETE_WINDOW", self.back) def back(self): cangkucha(self.window)为什么运行不了
时间: 2024-02-14 21:27:23 浏览: 96
根据您提供的代码,问题可能出在`cangkucha(self.window)`这一行上。根据代码来看,`cangkucha()`是一个函数,而不是一个类或对象的方法。所以,您需要将其改为函数的调用,而不是将其作为类的实例化。可以尝试使用以下代码进行调用:
```python
cangkucha(self.window)
```
另外,请确保在运行代码之前已经导入了必要的模块,如`tkinter`、`pymysql`、`messagebox`等。如果没有导入相关模块,也会导致代码运行失败。
相关问题
class AdminPage: def __init__(self, parent_window): parent_window.destroy() # 销毁主界面 self.window = tk.Tk() # 初始框的声明 self.window.title('管理员登陆页面') self.window.geometry('600x450') label = tk.Label(self.window, text='管理员登陆', bg='green', font=('Verdana', 20), width=40, height=2) label.pack() Label(self.window, text='管理员账号:', font=tkFont.Font(size=14)).pack(pady=25) self.admin_username = tk.Entry(self.window, width=40, font=tkFont.Font(size=14), bg='Ivory') self.admin_username.pack() Label(self.window, text='管理员密码:', font=tkFont.Font(size=14)).pack(pady=25) self.admin_pass = tk.Entry(self.window, width=40, font=tkFont.Font(size=14), bg='Ivory', show='*') self.admin_pass.pack() Button(self.window, text="登陆", width=10, font=tkFont.Font(size=12), command=self.login).pack(pady=40) Button(self.window, text="返回首页", width=10, font=tkFont.Font(size=12), command=self.back).pack() self.window.protocol("WM_DELETE_WINDOW", self.back) # 捕捉右上角关闭点击 self.window.mainloop() # 进入消息循环
这段代码是用 Python 的 tkinter 模块创建了一个简单的管理员登陆界面,其中包括管理员账号和密码的输入框以及登陆和返回首页的按钮。在程序运行时,会销毁主界面并打开管理员登陆页面。其中,self.login 和 self.back 是登陆和返回首页的函数,但是在这段代码中并没有给出它们的实现。
请你逐行解释一下以下代码class StudentView: def __init__(self, parent_window, student_id): parent_window.destroy() # 销毁主界面 self.window = tk.Tk() # 初始框的声明 self.window.title('学生信息查看') self.window.geometry('300x450') # 这里的乘是小x label = tk.Label(self.window, text='学生信息查看', bg='pink', font=('Verdana', 20), width=30, height=2) label.pack(pady=20) self.id = '学号:' + '' self.name = '姓名:' + '' self.gender = '性别:' + '' self.age = '年龄:' + '' # 打开数据库连接 db = pymysql.connect(host="localhost", port=3306, user="root", password="123456", database="student", charset="utf8") # db = pymysql.connect("localhost", "root", "123456", "student") # 打开数据库连接 cursor = db.cursor() # 使用cursor()方法获取操作游标 sql = "SELECT * FROM student_k WHERE id = '%s'" % (student_id) # SQL 查询语句 try: # 执行SQL语句 cursor.execute(sql) # 获取所有记录列表 results = cursor.fetchall() for row in results: self.id = '学号:' + row[0] self.name = '姓名:' + row[1] self.gender = '性别:' + row[2] self.age = '年龄:' + row[3] except: print("Error: unable to fetch data") db.close() # 关闭数据库连接 Label(self.window, text=self.id, font=('Verdana', 18)).pack(pady=5) Label(self.window, text=self.name, font=('Verdana', 18)).pack(pady=5) Label(self.window, text=self.gender, font=('Verdana', 18)).pack(pady=5) Label(self.window, text=self.age, font=('Verdana', 18)).pack(pady=5) Button(self.window, text="返回首页", width=8, font=tkFont.Font(size=16), command=self.back).pack(pady=25) self.window.protocol("WM_DELETE_WINDOW", self.back) # 捕捉右上角关闭点击 self.window.mainloop() # 进入消息循环 def back(self): StartPage(self.window) # 显示主窗口 销毁本窗口
这段代码定义了一个名为 StudentView 的类,该类用于展示学生信息界面。在该类的初始化方法 __init__ 中,首先销毁了父窗口,然后创建了一个名为 window 的 Tkinter 窗口。接着设置了窗口的标题和大小,并创建了一个 Label 用于显示标题。之后定义了四个变量 id、name、gender、age,并打开了一个 MySQL 数据库的连接。接着使用 cursor() 方法获取操作游标,并定义了一个 SQL 查询语句。然后执行 SQL 语句,获取查询结果,并将查询结果赋值给 id、name、gender、age 四个变量。最后创建了四个 Label 用于显示学生信息,并创建了一个“返回首页”的 Button,设置了该 Button 的字体大小和点击事件。最后设置了窗口右上角关闭按钮的点击事件,并进入了 Tkinter 的消息循环。back 方法用于返回到主窗口并销毁当前窗口。
阅读全文