2016-08-17 8 views
1

これは、post['date']という行でエラーを返す関数です。python関数のエラーpymongo

これはエラーです:

in get_posts 
    post['date'] = post['date'].strftime("%A, %B %d %Y at %I:%M%p") 
KeyError: 'date' 

それが何を意味するのでしょうか?

これは、関数である:

def get_posts(self, num_posts): 

    cursor = self.posts.find({},{}).limit(num_posts) # Using an empty itable for a placeholder so blog compiles before you make your changes 
    # XXX HW 3.2 Work here to get the posts 
    l = [] 

    for post in cursor: 
     print post   
     post['date'] = post['date'].strftime("%A, %B %d %Y at %I:%M%p") 
     if 'tags' not in post: 
      post['tags'] = [] # fill it in if its not there already 
     if 'comments' not in post: 
      post['comments'] = [] 

     l.append({'title':post['title'], 'body':post['body'], 'post_date':post['date'], 
        'permalink':post['permalink'], 
        'tags':post['tags'], 
        'author':post['author'], 
        'comments':post['comments']}) 

    return l 
+0

[私はPythonのキーエラーを取得しています]の可能な複製(http://stackoverflow.com/questions/10116518/im-getting-key-error-in-python) – fzzle

答えて

0

KeyError: 'date'postが属性dateを持っていないことを意味します。

関連する問題