我在我的应用的FlashDisplayPage中使用轮播。我想在旋转木马里面使用标签。我搜索了相关网站并制作了以下代码。我是kivy的新手,所以我不知道这是否正确。如果不是我怎么能做对的?
此处也出现错误,即使我在FlashDisplayPage中定义了label_name,我也收到此错误 - AttributeError:' FlashDisplayPage'对象没有属性' label_name'。为什么会出现此错误?我该如何删除它?
这里是发生错误的代码部分 -
class FlashDisplayPage(Screen):
def on_enter(self):
Num=self.index
card=['flash_card1.json','flash_card2.json','flash_card3.json','flash_card4.json','flash_card5.json','flash_card6.json','flash_card7.json','flash_card8.json','flash_card9.json','flash_card10.json']
label_name='Flash Card '+ Num #here I have defined label_name
with open(card[Num+1]) as frfile:
flash_data=json.load(frfile)
for i in flash_data:
self.ids.CarDisplay.add_widget(Label(text=i['word']+' : '+i['meaning']))
# here I am adding label to carousel
def next_one(self):
self.ids.CarDisplay.direction='right' # next label in carousel
def previous_one(self):
self.ids.CarDisplay.direction='left' # previous label in carousel
这里是与此相关的kv代码部分 -
<FlashDisplayPage>:
BoxLayout:
orientation: 'horizontal'
spacing:15
padding: 20
Label:
id: l
text: root.label_name
sixe_hint_y: None
height: 100
Carousel:
id: CarDisplay
loop: True
Button:
text:'next'
size_hint: None,.20
width: 30
on_press:root.next_one()
Button:
text:'next'
size_hint: None,.20
width: 130
on_press:root.previous_one()
答案 0 :(得分:1)
label_name
是on_enter函数中的局部变量,局部变量只能在创建它们的函数或作用域内访问。如果您想要访问,可能的解决方案是使其成为窗口小部件的属性:
from kivy.properties import StringProperty
class FlashDisplayPage(Screen):
label_name = StringProperty("")
def on_enter(self):
[...]
self.label_name='Flash Card {}'.format(Num)
[...]
答案 1 :(得分:1)
尝试使用self.label_name
创建实例变量,而不是on_enter()
中仅具有局部范围的局部变量。