Python错误:无法在类中访问函数

时间:2014-07-17 21:20:09

标签: python function syntax

我最近开始使用python并且完全混淆了。

我有以下课程:

class Vault:

  def __init__(self):

    # used to mock collection (table) of ads
    self._ads = [ {
        'id': '00000000-0000-0000-0000-000000000000',
        'date': str(datetime.now().strftime('%Y%m%d')),
      'time': str(datetime.now().strftime('%H%M%S')),
        'source': 'chron.com',
        'advertiser': 'itunes.apple.com',
        'width': 300,
        'height': 250
    } ]
  def get_ad_by_d(self, d):
    myDate = getTodayDate()
    ads = [ ad for ad in self._ads if ad['date'] == d ]
    if len(ads) == 0:
      return None
    elif len(ads) >= 1:
      return ads[0]
  def getTodayDate():
    return str(datetime.now().strftime('%Y%m%d'))

然而,当我调用它时,我收到以下错误:

  

NameError:未定义全局名称“getTodayDate”

为什么我不能访问同一个类中的另一个函数?我在textMate中编写了这段代码,但是在Eclipse中工作时,我从未遇到过在同一个类中访问相邻函数的问题。我错过了什么吗?

  def getTodayDate(self):
    return str(datetime.now().strftime('%Y%m%d'))
  def getTodayTime(self):
    return str(datetime.now().strftime('%H%M%S'))

解决上述问题,但在init中实现它失败(感谢答案):

  def __init__(self):
    myDate = getTodayDate()
    myTime = getTodayTime()
    # used to mock collection (table) of ads
    self._ads = [ {
        'id': '00000000-0000-0000-0000-000000000000',
        'date': myDate,
      'time': myTime,
        'source': 'chron.com',
        'advertiser': 'itunes.apple.com',
        'width': 300,
        'height': 250
    } ]

我有一个类似的错误,通过添加self来解决:

File "/Users/tai/Desktop/FlashY/flashy/repository/mock.py", line 10, in __init__
    myDate = getTodayDate()
NameError: global name 'getTodayDate' is not defined

在评论中的解决方案:

  def __init__(self):
    myDate = self.getTodayDate()
    myTime = self.getTodayTime()
    # used to mock collection (table) of ads
    self._ads = [ {
        'id': '00000000-0000-0000-0000-000000000000',
        'date': myDate,
      'time': myTime,
        'source': 'chron.com',
        'advertiser': 'itunes.apple.com',
        'width': 300,
        'height': 250
    } ]

1 个答案:

答案 0 :(得分:4)

在方法selfdef getTodayDate(self):

中使用myDate = self.getTodayDate()