如何从Django中的过滤器访问数据

时间:2018-09-23 03:46:38

标签: django django-models django-filter

在模板{{ filter.data }}中使用它,结果如下:

<QueryDict: {'location__icontains': ['Phnom Penh']}>

我应该怎么做才能获得值Phnom Penh而不是QueryDict

1 个答案:

答案 0 :(得分:0)

您应该只将已经获取的数据传递给模板it's not intended nor possible to filter data in the template,因为它应该在视图或模型中完成。