-4
class LoginScreen(Screen):
    def __init__(self,**kwargs):
        super(LoginScreen, self).__init__(**kwargs)
        print self,self.parent.current

class AppScreenManager(ScreenManager):
    pass

#Base Class
class AppBaseClass(App):
    def build(self):
        icon='app_icon'
        return Builder.load_file('appbase.kv')


________________________________________________________________________________________________

AppScreenManager:
    transition: FadeTransition()
    LoginScreen:

错误:AttributeError:“NoneType”对象没有“当前”属性。请帮忙。

4

1 回答 1

2

此刻你打电话:

print self,self.parent.current

LoginScreen 尚未实例化,因此您正在调用不存在的对象。

解决方法是将调用延迟 1 帧,这可以使用 Clock 类来完成:

 Clock.schedule_once(self._myprintfunction, 1/60)

后者在您的代码中但在同一类中:

    def _myprintfunction(self, dt):
        print '-'*25
        print self
        print self.parent
        # print self.parent.curet <- this will throw you an error 
        print '-'*25

希望能帮助到你。

于 2015-09-03T12:17:15.927 回答