属性错误:'None Type'对象没有属性"insert"。插入到文本框中



所以,我有我的基本函数,可以将一些数据打印到文本文件中。我想把这些数据放到Tkinter的文本框中。我遇到的问题是它将所有数据保存到文件中,然后再次读取所有数据,但没有将其插入文本框。 当我单击计算(触发函数的按钮)时,它返回错误:

Exception in Tkinter callback
Traceback (most recent call last):
  File "C:Python33libtkinter__init__.py", line 1475, in __call__
    return self.func(*args)
  File "D:Python ProjectRoof Pitch Calculator.py", line 52, in Calculate
    ResultsBox.insert(END, contents)
AttributeError: 'NoneType' object has no attribute 'insert'

该函数包含以下代码:

def Calculate():
    h1 = float(LongHeight.get())
    h2 = float(ShortHeight.get())
    aj = float(Width.get())
    d = float(Depth.get())
    opc = h1 - h2
    Opc_Width = opc / aj
    Radians = math.atan(opc / aj)
    Pitch = math.degrees(math.atan(opc / aj))
    Width_And_Height_Squared = (opc * opc) + (aj * aj)
    Square_Root = math.sqrt((opc * opc) + (aj * aj))
    Roof_Area = math.sqrt((opc * opc) + (aj * aj))*d
    text_file = open("temp.txt", "a")
    text_file.write("Longest Height: ")
    text_file.write(str(h1))
    text_file.write("n")
    text_file.write("Shortest Height: ")
    text_file.write(str(h2))
    text_file.write("n")
    text_file.write("Width: ")
    text_file.write(str(aj))
    text_file.write("n")
    text_file.write("Depth: ")
    text_file.write(str(d))
    text_file.write("n")
    text_file.write("Pitch: ")
    text_file.write(str(Pitch))
    text_file.write("n")
    text_file.write("Roof Area: ")
    text_file.write(str(Roof_Area))
    text_file.write("n")
    text_file.write("n")
    text_file.close()
    text_file = open("temp.txt")
    contents = ""
    for i in text_file:
        contents += i
    ResultsBox.insert(END, contents)
    text_file.close()

另外,有没有办法将数据直接放入文本框中,而不是放入文本文件,然后放入文本框中?如果是这样,请有人告诉我该怎么做,因为我一辈子都想不通。

编辑:这是完整的代码:

from tkinter import *
from tkinter.ttk import *
import math, os
try:
    os.remove("temp.txt")
except OSError:
    pass
def Calculate():
    h1 = float(LongHeight.get())
    h2 = float(ShortHeight.get())
    aj = float(Width.get())
    d = float(Depth.get())
    opc = h1 - h2
    Opc_Width = opc / aj
    Radians = math.atan(opc / aj)
    Pitch = math.degrees(math.atan(opc / aj))
    Width_And_Height_Squared = (opc * opc) + (aj * aj)
    Square_Root = math.sqrt((opc * opc) + (aj * aj))
    Roof_Area = math.sqrt((opc * opc) + (aj * aj))*d
    text_file = open("temp.txt", "a")
    text_file.write("Longest Height: ")
    text_file.write(str(h1))
    text_file.write("n")
    text_file.write("Shortest Height: ")
    text_file.write(str(h2))
    text_file.write("n")
    text_file.write("Width: ")
    text_file.write(str(aj))
    text_file.write("n")
    text_file.write("Depth: ")
    text_file.write(str(d))
    text_file.write("n")
    text_file.write("Pitch: ")
    text_file.write(str(Pitch))
    text_file.write("n")
    text_file.write("Roof Area: ")
    text_file.write(str(Roof_Area))
    text_file.write("n")
    text_file.write("n")
    text_file.close()
    text_file = open("temp.txt")
    contents = ""
    for i in text_file:
        contents += i
    ResultsBox.insert(END, contents)
    text_file.close()
    ShortHeight.set("")
    LongHeight.set("")
    Depth.set("")
    Width.set("")

window = Tk()
window.geometry("600x400+200+200")
window.title("Roof Pitch Calculator")
window.wm_resizable(0,0)
TitleLabel = Label(window, font = "Comic 30", foreground = "deep sky blue", text = "Roof Pitch Calculator").pack()
CalculateButton = Button(window, text = "Calculate", command = Calculate).pack(side = BOTTOM, pady = 5)
ResultsBox = Text(window, height = 13, width = 70).pack(side = BOTTOM)
ShortHeightLabel = Label(window, text = "Short Height").place(x = 190, y = 50)
LongHeightLabel = Label(window, text = "Long Height").place(x = 330, y = 50)
DepthLabel = Label(window, text = "Depth").place(x = 207, y = 100)
WidthLabel = Label(window, text = "Width").place(x = 345, y = 100)
ShortHeight = StringVar()
ShortHeightEntry = Entry(window, textvariable = ShortHeight)
ShortHeightEntry.place(x = 161, y = 71)
LongHeight = StringVar()
LongHeightEntry = Entry(window, textvariable = LongHeight)
LongHeightEntry.place(x = 300, y = 71)
Depth = StringVar()
DepthEntry = Entry(window, textvariable = Depth)
DepthEntry.place(x = 161, y = 120)
Width = StringVar()
WidthEntry = Entry(window, textvariable = Width)
WidthEntry.place(x = 300, y = 120)
window.mainloop()

您正在将.pack()的结果分配给ResultsBox,请尝试在两行:

ResultsBox = Text(window, height = 13, width = 70)
ResultsBox.pack(side = BOTTOM)

此外,您无需编写文本文件然后重新打开它以加载内容。我会使用列表来存储内容,然后我会使用用于保存和填充文本框的列表:

contents_list = ["Longest Height: ",
                 str(h1),
                 "n",
                 ...]
contents = "".join(contents_list)
text_file.write(contents)
ResultsBox.insert(END, contents)

最新更新