Перезагрузить объект django из базы данных

Возможно ли обновить состояние объекта django из базы данных? Я имею в виду поведение, примерно эквивалентное:

new_self = self.__class__.objects.get(pk=self.pk)
for each field of the record:
    setattr(self, field, getattr(new_self, field))

UPD: Найден войну reopen/wontfix в трекере: http://code.djangoproject.com/ticket/901. Все еще не понимаю, почему сопровождающим это не нравится.

Ответ 1

По состоянию на Django 1.8 встроены восстановительные объекты. Ссылка на документы.

def test_update_result(self):
    obj = MyModel.objects.create(val=1)
    MyModel.objects.filter(pk=obj.pk).update(val=F('val') + 1)
    # At this point obj.val is still 1, but the value in the database
    # was updated to 2. The object updated value needs to be reloaded
    # from the database.
    obj.refresh_from_db()
    self.assertEqual(obj.val, 2)

Ответ 3

В отношении комментария @grep не следует делать:

# Put this on your base model (or monkey patch it onto django Model if that your thing)
def reload(self):
    new_self = self.__class__.objects.get(pk=self.pk)
    # You may want to clear out the old dict first or perform a selective merge
    self.__dict__.update(new_self.__dict__)

# Use it like this
bar.foo = foo
assert bar.foo.pk is None
foo.save()
foo.reload()
assert bar.foo is foo and bar.foo.pk is not None