16

djangoでのマルチテーブル継承に問題があります。

銀行口座の例を見てみましょう。

class account(models.Model):
    name = models……

class accounttypeA(account):
    balance = models.float…..

    def addToBalance(self, value):
        self.balance += value

class accounttypeB(account):
    balance = models.int…. # NOTE this

    def addToBalance(self, value):
        value = do_some_thing_with_value(value) # NOTE this
        self.balance += value

ここで、accounttypeに値を追加したいのですが、持っているのはアカウントオブジェクト、たとえばacc = account.object.get(pk = 29)だけです。では、accの子は誰ですか?

Djangoは、accounttypeAとaccounttypeBにaccount_ptr_idフィールドを自動的に作成します。だから、私の解決策は:

child_class_list = ['accounttypeA', 'accounttypeB']

for cl in child_class_list:
    try:
        exec(“child = ” + str(cl) + “.objects.select_for_update().get(account_ptr_id=” +              str(acc.id) + “)”)
        logger.debug(“Child found and ready to use.”)
        return child
    except ObjectDoesNotExist:
        logger.debug(“Object does not exist, moving on…”)

多分それはこの時点で製図板の問題です!:)

私の例で明確になっていることを願っています。ありがとう

4

4 に答える 4

11

私の知る限り、これを行うための Django 組み込みの方法はありません。

ただし、与えられacc=account.object.get(pk=29)た場合、次を使用できます。

try:
    typeA = acc.accounttypeA
    # acc is typeA
except accounttypeA.DoesNotExist:
    # acc should be typeB if account only has typeA and typeB subclasses

try:
    typeB = acc.accounttypeB
    # acc is typeB
except accounttypeB.DoesNotExist:
    # acc should be typeA if account only has typeA and typeB subclasses
于 2012-10-06T01:40:59.113 に答える
7

私の解決策はこれに基づいていまし

class account(models.Model):
    name = models……

    def cast(self):
        """
        This method is quite handy, it converts "self" into its correct child class. For example:

        .. code-block:: python

           class Fruit(models.Model):
               name = models.CharField()

           class Apple(Fruit):
               pass

           fruit = Fruit.objects.get(name='Granny Smith')
           apple = fruit.cast()

        :return self: A casted child class of self
        """
        for name in dir(self):
            try:
                attr = getattr(self, name)
                if isinstance(attr, self.__class__) and type(attr) != type(self):                 
                    return attr
            except:
                pass

    @staticmethod
    def allPossibleAccountTypes():
        #this returns a list of all the subclasses of account (i.e. accounttypeA, accounttypeB etc)
        return [str(subClass).split('.')[-1][:-2] for subClass in account.__subclasses__()]

    def accountType(self):
        try:
            if type(self.cast()) == NoneType:
                #it is a child
                return self.__class__.__name__
            else:
                #it is a parent, i.e. an account
                return str(type(self.cast())).split('.')[-1][:-2]
        except:
            logger.exception()
    accountType.short_description = "Account type"

class accounttypeA(account):
    balance = models.float…..

    def addToBalance(self, value):
        self.balance += value

class accounttypeB(account):
    balance = models.int…. # NOTE this
于 2014-03-10T13:58:52.253 に答える
3

hasattr()次のような方法を使用できます。

if hasattr(account, 'accounttypea'):
   account.accounttypea.<somefield> = <some value>
   do something here....

elif hasattr(account, 'accounttypeb'):
   account.accounttypeb.<somefield> = <some value>
   do something here...

それほど乾燥していませんが、機能します。:)

于 2019-11-05T08:24:46.897 に答える