我正在使用 Django 并尝试添加一个只能在用户登录后访问的新模型。首先,我在应用程序中构建了一个 UserProfile 模型类,使用
def create_user_profile(sender, instance, created, **kwargs):
if created:
UserProfile.objects.create(user=instance)
post_save.connect(create_user_profile, sender=User)
将模型同步到数据库中,它通过调用运行良好UserProfile = request.user.get_profile()
,然后我在另一个应用程序(称为“控制”)中构建了名为“ControlInformation”的 Anther 模型类,使用
def create_control_information(sender, instance, created, **kwargs):
if created:
ControlInformation.objects.create(user=instance)
post_save.connect(create_control_information, sender=User)
同步这个模型,但是调用views.py时使用这个模型中的信息有一些问题Current_Status = request.user.get_profile()
,即“'UserProfile'对象没有属性'turn_on_off'” 。on_off = Current_Status.turn_on_off
在另一个应用程序的一个模型上构建这个时我是对的吗?还是有其他问题?
编辑:我的 ControlInformation 模型是这样的:
class ControlInformation(models.Model):
user = models.OneToOneField(User)
TURN_ON_OFF = (
('ON', 'On'),
('OFF', 'Off'),
)
AUTO_MANU = (
('ON', 'On'),
('OFF', 'Off'),
)
TEMP_DINNINGROOM = (
('HIGH', 'High'),
('MEDIUM', 'Medium'),
('LOW', 'Low'),
)
TEMP_LIVINGROOM = (
('HIGH', 'High'),
('MEDIUM', 'Medium'),
('LOW', 'Low'),
)
turn_on_off = models.CharField(max_length=1, choices=TURN_ON_OFF)
auto_manu = models.CharField(max_length = 1, choices=AUTO_MANU)
temp_dinningroom = models.CharField(max_length=1, choices=TEMP_DINNINGROOM)
temp_livingroom = models.CharField(max_length=1, choices=TEMP_LIVINGROOM)
#signal function: if a user is created, add control information to the user
def create_control_information(sender, instance, created, **kwargs):
if created:
ControlInformation.objects.create(user=instance)
post_save.connect(create_control_information, sender=User)
然后我在views.py中使用这个模型,如下所示:
def current_status(request):
if not request.user.is_authenticated():
return HttpResponseRedirect('/keenhome/accounts/login/')
Current_Status = request.user.get_profile()
on_off = Current_Status.turn_on_off
auto_manu = Current_Status.auto_manu
temp_dinningroom = Current_Status.temp_dinningroom
temp_livingroom = Current_Status.temp_livingroom
context = {'on_off': on_off,
'auto_manu': auto_manu,
'temp_dinningroom': temp_dinningroom,
'temp_livingroom': temp_livingroom,
}
return render(request, 'control/current_control_status.html', context)
这on_off = Current_Status.turn_on_off
就是问题发生的地方。('UserProfile' 对象没有属性 'auto_manu')