在Django中的其他模型方法中调用模型方法是一种好习惯吗?

时间:2018-12-22 11:46:58

标签: python django model-view-controller

我正在尝试在Django中将代码编写为“ Pythonic”。 请考虑以下模型:

class MyRequest(models.Model):
   ...

   def get_prices(self):
      ...

   def set_costs(self):
      ...

   def get_details(self):
       self.set_costs()
       x = self.get_prices()
       return x % 10

在彼此内部调用模型方法是一种好习惯吗?

0 个答案:

没有答案