如何在参考资料中搜索嵌套值(tastypie json)

时间:2016-05-22 03:26:12

标签: python json django tastypie jsonresponse

您好我在respurces.py文件中有以下资源。

class SodResource(ModelResource):

    class Meta:
        queryset = Sod.objects.all().order_by('-rank')
        filtering = {'sod_type': ALL, 'generic_value': ALL}


class DeptBpResource(ModelResource):
    sod_setting = fields.ToManyField(SodResource, 'sod',  null=True, full=True)

    class Meta:
        queryset = Dept_Bp.objects.all()
        filtering = {
                'dept_name': ALL,
                'bp_name': ALL,
            }

我可以搜索http://10.85.87.116:8000/fmea/api/v1/deptbp/?format=json&dept_name=DEQP&bp_name=Kaizen。但我的目标是能够搜索sod_type(来自上述资源)。但是当我搜索http://10.85.87.116:8000/fmea/api/v1/deptbp/?format=json&dept_name=DEQP&bp_name=Kaizen&sod_type=1时,它只返回与http://10.85.87.116:8000/fmea/api/v1/deptbp/?format=json&dept_name=DEQP&bp_name=Kaizen相同的值,而不是缩小我的搜索范围。对资源或tastypie有点新鲜。这家伙有什么不对?任何的想法?提前致谢。

1 个答案:

答案 0 :(得分:1)

试试这个:

class SodResource(ModelResource):

    class Meta:
        queryset = Sod.objects.all().order_by('-rank')
        filtering = {'sod_type': ALL, 'generic_value': ALL}


class DeptBpResource(ModelResource):
    sod_setting = fields.ToManyField(SodResource, 'sod',  null=True, full=True)

    class Meta:
        queryset = Dept_Bp.objects.all()
        filtering = {
            'dept_name': ALL,
            'bp_name': ALL,
            'sod_setting': ALL_WITH_RELATIONS
        }

在您的网址上。你可以这样做:

http://10.85.87.116:8000/fmea/api/v1/deptbp/?format=json&dept_name=DEQP&bp_name=Kaizen&sod_setting__type=1