Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用应用程序引擎搜索 api 在文档中进行搜索。返回的结果显示在 django 模板上,如下所示
{% for item in results %} {{item.id.0.value}} {{item.name.0.value}} {% endfor %}
我能够显示模板中的所有字段,但结果的doc_id除外。有人可以帮我弄清楚如何在模板中显示 doc_id 吗?
根据文档:
...您可以检查结果的 id 属性以发现生成的 doc_id。
因此,您示例中的 .id 属性实际上是您正在寻找的 doc_id 。