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.
我有一个基于 django / django_appengine 的 Google App Engine 应用程序,我希望通过向其添加用户配置文件支持来对其进行修改,因为基本用户模型对于我的情况来说有点简单。
最好的方法是什么?
您可以创建一个名为 example 的模型UserProfile,其密钥为用户的电子邮件地址或用户 ID。
UserProfile
UserProfile profile = UserProfile.get_or_create(user.user_id)将确保不会为现有用户 ID 创建任何用户配置文件。
UserProfile profile = UserProfile.get_or_create(user.user_id)