Django:在引用之前测试UserProfile是否存在

时间:2013-02-16 04:41:36

标签: python django

尝试在Django中查看视图,将UserProfile挂钩为我的用户配置文件模块。我想做点什么:

@login_required
def viewfunction (request):
   if request.user.get_profile():
      << do something here >>

但这样做会出错。是否有最佳实践来测试是否存在用户配置文件模块?

1 个答案:

答案 0 :(得分:0)

您可以确保通过signals创建了UserProfile。这是一个相关的question