class model(models.Model)
....
def my_custom_method(self, *args, **kwargs):
#do something
當我嘗試pre_save期間調用此方法,保存,post_save等,Python會引發一個TypeError;未綁定的方法。
一個如何添加,可以以同樣的方式像model.objects.get()等執行自定義模型的方法呢?
編輯:使用super(model, self).my_custom_method(*args, **kwargs)
但在這種情況下,Python中說,模型沒有屬性my_custom_method