为什么这个python方法会出错,说全局名称没有定义?

时间:2009-08-17 05:07:54

标签: python google-app-engine

我的Google App Engine项目只有一个代码文件。这个简单的文件有一个类,里面有几个方法。 为什么这个python方法会出错,说全局名称没有定义?
Erro NameError:未定义全局名称'gen_groups'

import wsgiref.handlers


from google.appengine.ext import webapp
from django.utils import simplejson

class MainHandler(webapp.RequestHandler):

  def gen_groups(self, lines):
    """ Returns contiguous groups of lines in a file """

    group = []

    for line in lines:
      line = line.strip()
      if not line and group:
        yield group
        group = []
      elif line:
          group.append(line)

  def gen_albums(self, groups):
   """ Given groups of lines in an album file, returns albums  """

   for group in groups:
      title    = group.pop(0)
      songinfo = zip(*[iter(group)]*2)
      songs    = [dict(title=title,url=url) for title,url in songinfo]
      album    = dict(title=title, songs=songs)

      yield album





  def get(self):
    input = open('links.txt')
    groups = gen_groups(input)
    albums = gen_albums(groups)

    print simplejson.dumps(list(albums))



def main():
  application = webapp.WSGIApplication([('/', MainHandler)],
                                       debug=True)
  wsgiref.handlers.CGIHandler().run(application)


if __name__ == '__main__':
  main()

3 个答案:

答案 0 :(得分:5)

这是一种实例方法,您需要使用self.gen_groups(...)self.gen_albums(...)

编辑:我猜你现在得到的TypeError是因为你从gen_groups()删除了'self'参数。你需要把它放回去:

def get_groups(self, lines):
    ...

答案 1 :(得分:1)

您需要使用实例显式调用它:

groups = self.gen_groups(input)

对于您在那里进行的其他一些通话,例如, gen_album

另请参阅Knowing When to Use self and __init__了解详情。

答案 2 :(得分:1)

你必须像这样使用它:

self.gen_groups(input)

Python中没有隐含的“自我”。