0

想象一下以下结构(我已经削减了大多数恕我直言的相关部分):

class mymodificatorclass:
  def callback(self,object):
    print object

class generator(BoxLayout):
  #(...)
  def add(self, *l):
    for i,t in enumerate(self.texts):
      self.mytext.append(TextInput(hint_text=t, on_text_validate=modify.callback(self)))
      self.add_widget(self.mytext[i])

#(...)
modify = mymodificatorclass() #global scope variable

打印例如 < main .generator object at 0x433eef0>。这很好。但是,如何访问此类实例变量?

意思是,所需的输出将是:

print XXXXX
$ <__main__.mytext object at 0x433eef0>
print XXXXX.text, XXXXX
$ "text inside" <__main__.mytext object at 0x433eef0>

我检查过:

print object.__class__.__dict__.items() #no mytext here
print object.mytext #no mytext here
print getattr(object,object.mytext) # object generator has no attribute mytext

我知道我可以分配例如存储每个 TextInput 对象的附加变量,但我不想这样做,因为我知道如果我像这样修改示例:

class generator(BoxLayout):
  def add(self, *l):
    for i,t in enumerate(self.texts):
      self.mytext.append(TextInput(hint_text=t, on_text_validate=self.callback))
      self.add_widget(self.mytext[i])

  def callback(self,object):
    print object

我会得到想要的结果(我有这样的,但决定我需要靠近 mvc )

4

1 回答 1

1
self.mytext.append(TextInput(hint_text=t,
                             on_text_validate=modify.callback(self)))

您正在调用该函数而不是传递它。使用functools.partial

self.mytext.append(TextInput(hint_text=t,
                             on_text_validate=partial(modify.callback, self)))
于 2013-07-25T20:16:22.480 回答