0

あまり高度なPythonユーザーではありません。以下にデータを入力しようとして立ち往生していますが、list_choicesの処理が間違っていると思います。

class LocationManager(TranslationManager):
    def get_location_list(self, lang_code, site=None):
        # this function is for building a list to be used in the posting process
        # TODO: tune the query to hit database only once
        list_choices = {}
        for parents in self.language(lang_code).filter(country__site=site, parent=None):    
            list_child = ((child.id, child.name) for child in self.language(lang_code).filter(parent=parents))
            list_choices.setdefault(parents).append(list_child)

        return list_choices

エラーの下で取得しています

>>> 
>>> Location.objects.get_location_list(lang_code='en', site=current_site)
Traceback (most recent call last):
  File "<console>", line 1, in <module>
  File "/home/mo/Projects/mazban/mazban/apps/listing/geo/models.py", line 108, in get_location_list
    list_choices.setdefault(parents).append(list_child)
AttributeError: 'NoneType' object has no attribute 'append'
4

1 に答える 1

1

これはsetdefault、2番目の引数なしで使用するためです。そしてNone、この場合は戻ります。

この修正されたコードを試してください:

# this is much more confinient and clearer
from collections import defaultdict

def get_location_list(self, lang_code, site=None):
    # this function is for building a list to be used in the posting process
    # TODO: tune the query to hit database only once
    list_choices = defaultdict(list)
    for parent in self.language(lang_code).filter(country__site=site, parent=None):
        list_child = self.language(lang_code).filter(parent=parent).values_list('id', 'name')
        list_choices[parent].extend(list_child)

    return list_choices
于 2012-01-21T10:26:25.947 に答える