Tastypie REST上的ForeignKey - 模型''具有空属性

时间:2013-02-07 13:14:12

标签: django rest tastypie

我需要列出每位员工的工作时间,但我得到了:

模型''具有空属性'work_journey',并且不允许空值。

在:

/休息/ tastypie /雇员/?格式= JSON

models.py

class Employee():
    registration = models.CharField(u'Registration', max_length=20, unique=True)
    work_journey = models.ForeignKey(WorkJourney, null=True, blank=True)

hr.models.py

class WorkJourney(ModelPlus):
    code = models.CharField(max_length=10, null=True, unique=True)
    workinghours = models.CharField(max_length=40)
    excluded = models.BooleanField()

    class Meta:
        db_table='work_journey'
        verbose_name = u'Work Journey'

    def __unicode__(self):
        return self.workinghours

resources.py

from suap.models import Employee
from hr.models import WorkJourney


class WorkJourneyResource(ModelResource):
    class Meta:
        queryset = WorkJourney.objects.all()
        resource_name = 'work_journey'
        authentication = BasicAuthentication()

class EmployeeResource(ModelResource):
    journey = fields.ForeignKey(WorkJourney, 'work_journey')
    class Meta:
        queryset = Employee.objects.all()
        resource_name = 'employee'
        authentication = BasicAuthentication()

1 个答案:

答案 0 :(得分:15)

1 /在ressoure.py中定义关系时需要WorkJourneyResource而不是WorkJourney

2 /要允许空值,只需添加null=True, blank=True

以下是修正的代码:

class EmployeeResource(ModelResource):
    journey = fields.ForeignKey(WorkJourneyResource, 'work_journey', null=True, blank=True)
    ....