Tkinter中的Filedialogue错误

时间:2013-05-09 17:22:43

标签: python user-interface python-2.7 python-3.x tkinter

关于Tkinter的问题:

我想创建一个浏览以及一个文本显示,它将显示我从浏览按钮中选择的文件。以下是我的代码:

编辑1。

button_opt = {'fill': Tkconstants.BOTH, 'padx': 5, 'pady': 5}
    Tkinter.Button(self, text='Browse and open filename - then manually upload it', command=self.askopenfilename).pack(**button_opt)

    self.file_opt = options = {}        
    options['defaultextension'] = '.txt'
    options['filetypes'] = [('all files', '.*'), ('text files', '.txt')]
        options['initialdir'] = 'C:\\'
    options['initialfile'] = 'myfile.txt'
        options['parent'] = root
        options['title'] = 'Browse'

    self.dir_opt = options = {}
    options['initialdir'] = 'C:\\'
    options['mustexist'] = False
    options['parent'] = root
    options['title'] = 'Browse'

    image = Image.open("/home/kuber/Downloads/godata/images/header.png")
    photo = ImageTk.PhotoImage(image)
    label = Label(image=photo)
    label.image = photo # keep a reference!
    label.place(width=768, height=576)
    label.pack(side = TOP)

    self.centerWindow()
    self.master.columnconfigure(10, weight=1)
    #Tkinter.Button(self, text='upload file', command=self.Fname).pack(**button_opt)    
    self.file_name = Text(self, width=39, height=1, wrap=WORD)

def Fname(self):
    self.file_name = Text(self, width=39, height=1, wrap=WORD)
        self.file_name.grid(row=1, column=1, columnspan=4, sticky=W)

def askopenfilename(self):

   # get filename
     filename = tkFileDialog.askopenfilename(**self.file_opt)

   # open file on your own
     if filename:
     with open(self.filename, 'r') as inp_file:
        print "1"
        self.file_name.delete(0.0, END)
        self.file_name.insert(0.0, inp_file.read())
            #return open(filename, 'r')

按下浏览按钮并打开文件。我希望从askopenfilename函数转到文本小部件。但是我得到了错误:

AttributeError: TkFileDialogExample instance has no attribute 'filename'

当我在Fname之外包含self.file_name.grid(row = 1,column = 1,columnspan = 4,sticky = W)时,Tkinter会挂起。

1 个答案:

答案 0 :(得分:0)

当你看到像'X实例没有属性'文件名'这样的python错误时,它就意味着它所说的内容。根本原因通常是两件事之一:

  • X是你打算使用的对象,它确实没有那个属性v(也许你拼错了它,忘了定义它),或者
  • 你告诉程序使用X,但X不是你想象的那样(即:你认为它指的是特定类型的对象,但它是一个字符串或数字或其他类。

所以,问问自己,"为什么TkFileDialogExample没有这个属性?你有没有定义它具有该属性?何时何地?你拼错了吗?或者,您的代码是否应该从其他对象获取属性?

换句话说,您的代码正在使用self.filenameself您认为它是什么?