0

我有这样的 ElasticSearch 迭代数据:

(Pdb) data[0]
     {'_index': 'publishserdata-index',
      '_type': 'publishser_data_index', 
      '_id': '35', '_score': 1.0, 
      '_source': {'publisher': 'Admin',
                 'department': 'IT', 
                 'subdepartment': 'Full Stack Developer',
                 'inventory_ID': 'IT003',
                 'title': 'Why Should I Use Celery?', }}

我想获取出版商、部门、标题数据。

当我在模板中迭代值时:-

{% for d in data %}
       {{d._source.publisher}}/error
{% endfor %}
4

1 回答 1

1

正如该代码所示,data[0]是一个字典。所以你使用普通的 dict 语法来访问它的内容:data[0]['_source']等。

于 2018-03-13T11:36:25.997 回答