GetResponse クラス
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
GetResponse
クラスは、ドキュメントとインデックスに関する情報を返すために呼び出されたメソッドの結果を表します。
GetResponse
は、google.appengine.api.search
モジュールで定義されます。
はじめに
GetResponse
オブジェクトは、index.get_range() または search.get_indexes() の呼び出しから返されます。GetResponse
のインスタンスを反復処理すると、その results プロパティのメンバーが返されます。プロパティの内容は、GetResponse
のインスタンスを作成した呼び出しの種類によって決まります。
たとえば、次のコードは GetResponse
を使用して正常に削除されたドキュメントを特定する方法を示しています。この場合、反復処理によって複数のドキュメントが返されます。
response = index.get_range()
for document in response:
print "document ", document
コンストラクタ
GetResponse
クラスのコンストラクタは、次のように定義されます。
- class GetResponse(results=None)
クラス GetResponse
のインスタンスを作成します。
引数
- results
results
プロパティの初期値。
結果値
GetResponse
クラスの新しいインスタンス。
例外
- TypeError
パラメータの型が無効であるか、不明な属性が渡されました。
- ValueError
パラメータの値が無効です。
プロパティ
GetResponse
クラスのインスタンスには次のプロパティがあります。
- results
オブジェクトを返す呼び出しに応じて型が異なる結果のリスト。get_range() が呼び出された場合、識別子の降順で並び替えられたドキュメントのリストが results
として返されます。search.get_indexes() が呼び出された場合、インデックスのリストが results
として返されます。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-04-03 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["わかりにくい","hardToUnderstand","thumb-down"],["情報またはサンプルコードが不正確","incorrectInformationOrSampleCode","thumb-down"],["必要な情報 / サンプルがない","missingTheInformationSamplesINeed","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-04-03 UTC。"],[[["`GetResponse` represents the results obtained from methods that retrieve information about documents and indexes, particularly in the context of first-generation runtimes and potential migration to second-generation runtimes."],["A `GetResponse` object is returned by `index.get_range()` or `search.get_indexes()`, allowing iteration over the `results` property."],["The `GetResponse` class can be initialized with a `results` parameter using the constructor `GetResponse(results=None)`, and it raises `TypeError` or `ValueError` for invalid inputs."],["The `results` property of a `GetResponse` instance is a list, which either contains `Documents` when returned from `get_range()` or contains `Indexes` when returned from `get_indexes()`."]]],[]]