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 です。