swanseabrian 发表于 2022-1-15 21:26:53

tkinter 怎么传参数进来呀

tkinter 怎么传参数进来呀?

正则里有个变量需要用tkinter传参数进来,
也就是用户可以定制这个规则的一部分,
可以我弄了总报错,不太会弄这个

    urlname = e.get()
AttributeError: 'NoneType' object has no attribute 'get'
设置的函数是这样的
def insert_point():
    urlname = e.get()
    if len(urlname) < 1:
      urlname = 'netafim.c'
    else:
      print(urlname)
      pattern = re.compile(r'(?<=({})).*?(?=</a>)'.format(urlname))

就是,如果没有用户输入的的情况呀,使用程序默认的参数
如果有用户输入,就用用户输入的参数
报错
   urlname = e.get()
AttributeError: 'NoneType' object has no attribute 'get'

e = Entry(root, show=None, width=30, bd=4).pack()
b1 = Button(root, text='上面输入域名确定', width=15, height=1, command=insert_point)
b1.pack()\
有人能帮我一下吗

hrpzcf 发表于 2022-1-15 21:31:03

e = Entry(root, show=None, width=30, bd=4).pack()
拆成两句
e = Entry(root, show=None, width=30, bd=4)
e.pack()

swanseabrian 发表于 2022-1-15 22:13:41

hrpzcf 发表于 2022-1-15 21:31
e = Entry(root, show=None, width=30, bd=4).pack()
拆成两句
e = Entry(root, show=None, width=30, bd ...

恩,我查了一下,好像是这么回事, 谢谢
页: [1]
查看完整版本: tkinter 怎么传参数进来呀