首先,我的变量和文字是德语,我也是,但我希望这不是问题。 所以,这是我的第一个问题,我的第一个查询工作正常。我不知道为什么其他人不能工作,但我想这是因为有多个查询!
我对编程很新。
这只是我的php来更新我的调色板数据库!
elements.forEach(x -> {
x.setName("name");
x.setAge(19);
})
你能告诉我为什么我的查询不起作用吗?
提前谢谢, 尼科答案 0 :(得分:1)
在下面的while循环代码中,您使用的是 $ row_all ,但在获取值时,您使用的是 $ row 。改变它,会起作用。
from tkinter import *
class App:
def __init__(self, master):
self.master = master
self.top = Toplevel(self.master)
self.frame = Frame(self.top)
self.entry = Entry(self.master)
self.button = Button(self.master, text="Ok", command=self.command)
self.entry.pack()
self.button.pack()
self.top.withdraw()
self.frame.pack()
def command(self):
self.frame.destroy()
self.frame = Frame(self.top)
self.listbox = Listbox(self.frame)
self.scroll = Scrollbar(self.frame, orient="vertical", command=self.listbox.yview)
self.listbox.configure(yscrollcommand=self.scroll.set)
for i in range(int(self.entry.get())):
self.listbox.insert(END, "Col"+str(i))
self.frame.pack()
self.listbox.pack(side="left")
self.scroll.pack(side="left", expand=True, fill=Y)
self.top.deiconify()
root = Tk()
app = App(root)
root.mainloop()
我希望它能解决你的问题。