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
- 체이닝을 위한 객체입니다.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 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."]]],[]]