这是我的应用程序/api.py
from app.models import Person
from tastypie.resources import ModelResource, ALL, ALL_WITH_RELATIONS
class PersonResource(ModelResource):
class Meta:
queryset = Person.objects.all()
resource_name='person
# filtering = { "email" : ALL,"dob":ALL,"mobile":ALL}
filtering = {
'email': ALL,
'mobile': ALL,
'dob': ALL,
}
它在以下位置成功返回 json:/api/person/?format=json@email=abcd@example.com
但我想在 json 输出中再添加一个字符串作为“状态”,当过滤成功时为 True,当数据库中没有与给定电子邮件对应的条目时为 False。我怎样才能做到这一点 ?