Kivy #39;NoneType#39; object has no attribute #39;ids#39;(Kivy NoneType 对象没有属性 ids)
问题描述
我在我的 Kivy 应用程序中收到以下错误,但我不知道为什么以及如何解决它:
I am receiving the following error in my Kivy application but I am not sure why and how to fix it:
File "main.py", line 16, in __init__
self.seq_text_box = self.parent.ids.seq_text_box
AttributeError: 'NoneType' object has no attribute 'ids'
基本上,我要做的只是访问 MenuBar
类的方法中的文本框.我是新手,所以很可能我误解了一些东西.
Basically, all I'm trying to do is access the text box within the methods of the MenuBar
class. I'm new to this so it's likely I'm misunderstanding something.
.py 文件
from kivy.app import App
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.textinput import TextInput
class SequenceTextBox(TextInput):
pass
#...
class MenuBar(BoxLayout):
def __init__(self, **kwargs):
super(MenuBar, self).__init__(**kwargs)
self.seq_text_box = self.parent.ids.seq_text_box
def go(self):
print(self.seq_text_box.text)
class MinuRoot(BoxLayout):
pass
class MinuApp(App):
pass
if __name__ == '__main__':
MinuApp().run()
.kv 文件
MinuRoot:
<MinuRoot>:
orientation: "vertical"
MenuBar
SequenceTextBox
id: seq_text_box
<MenuBar>:
height: "40dp"
size_hint_y: None
Button:
text: "Go!"
on_press: root.go()
<SequenceTextBox>:
focus: True
感谢您的帮助:)
推荐答案
您可以将 seq_text_box
存储为 MenuBar 的 .html#kivy.properties.ObjectProperty" rel="nofollow">ObjectProperty
并在 kv
文件中设置:
You can store seq_text_box
as an ObjectProperty
of MenuBar
and set it in the kv
file:
class MenuBar(BoxLayout):
seq_text_box = ObjectProperty()
def go(self):
print(self.seq_text_box.text)
在kv
文件中:
<MinuRoot>:
orientation: "vertical"
MenuBar:
seq_text_box: seq_text_box
SequenceTextBox:
id: seq_text_box
您收到错误的原因是因为在构造函数中,ids
尚未根据 kv
文件中指定的规则填充.
The reason you receive the error is because in the constructor the ids
haven't been populated from the rules specified in the kv
file.
如果您确实想使用普通属性,可以安排 Clock
事件:
If you do want to use a plain attribute, you can schedule a Clock
event:
class MenuBar(BoxLayout):
def __init__(self, **kwargs):
super(MenuBar, self).__init__(**kwargs)
Clock.schedule_once(self.init_seq_text_box, 0)
def init_seq_text_box(self, *args):
self.seq_text_box = self.parent.ids.seq_text_box
这将为下一帧安排对 init_eq_text_box
的调用,届时将填充 ids
.
This will schedule a call to init_eq_text_box
for the next frame, when ids
will be populated.
这篇关于Kivy 'NoneType' 对象没有属性 'ids'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Kivy 'NoneType' 对象没有属性 'ids'
基础教程推荐
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 筛选NumPy数组 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01