Django Query无法在cron作业下工作

时间:2015-11-16 12:00:57

标签: python django cron

我想在django用户中创建一个cron作业,用于向用户发送电子邮件。

all_user_result = AssesmentRegisterdUser.objects.filter(finish_mail = False)
for asm_user in all_user_result:
    email = asm_user.student.email
    full_name = asm_user.student.username
    module_name = asm_user.test.module_name
    test_finish_mail(to_email = email, full_name = full_name, module_name = module_name)
    asm_user.finish_mail = True
    asm_user.save()

当我在job下尝试此代码时,它无法从我的数据库中检索(使用外键关系)asm_user.student.user.emailasm_user.test.module_name

  

注意:Cron作业正在处理静态数据。

0 个答案:

没有答案