Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用(来自 Shell)创建用户时:
u = User.objects.create_user('Angel', 'angel@test.com', 'angel')
如果然后我执行(在shell中):
u.first_name = 'Angel' u.save
如果我看到数据库(MySql),我看到 first_name 是空的。
你没有打电话save(你忘了括号):
save
u.first_name = 'Angel' u.save()