Class Suggestions
候補
TextInput
ウィジェットを補完する予測入力の候補。
Google Workspace アドオンと Google Chat アプリでご利用いただけます。
var textInput = CardService.newTextInput()
.setSuggestions(CardService.newSuggestions()
.addSuggestion("First suggestion")
.addSuggestion("Second suggestion"))
詳細なドキュメント
addSuggestion(suggestion)
テキストの候補を追加します。
パラメータ
名前 | 型 | 説明 |
suggestion | String | 候補のテキスト。 |
戻る
Suggestions
- チェーン用のオブジェクト。
addSuggestions(suggestions)
テキスト候補のリストを追加します。
パラメータ
名前 | 型 | 説明 |
suggestions | Object[] | 文字列の候補の配列。 |
戻る
Suggestions
- チェーン用のオブジェクト。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-08-21 UTC。
[null,null,["最終更新日 2024-08-21 UTC。"],[[["Autocomplete suggestions enhance TextInput widgets in Google Workspace Add-ons and Google Chat apps by providing users with pre-filled options."],["Developers can easily add single or multiple text suggestions using the `addSuggestion()` and `addSuggestions()` methods respectively, within the Suggestions object."],["The `addSuggestion()` method takes a single string argument representing the suggestion text, while `addSuggestions()` accepts an array of strings for multiple suggestions."],["Both methods return the Suggestions object, allowing for method chaining to efficiently build a comprehensive list of suggestions."]]],[]]