Оптимизируйте свои подборки
Сохраняйте и классифицируйте контент в соответствии со своими настройками.
Разделитель
Горизонтальный разделитель. Чтобы добавить разделитель к вашей дополнительной карте, используйте метод newDivider() в CardService . Например, в следующем примере создается простая карточка с двумя абзацами, разделенными разделителем.
function buildCard() {
let cardSection1TextParagraph1 = CardService.newTextParagraph()
.setText('Hello world!');
let cardSection1Divider1 = CardService.newDivider();
let cardSection1TextParagraph2 = CardService.newTextParagraph()
.setText('Hello world!');
let cardSection1 = CardService.newCardSection()
.addWidget(cardSection1TextParagraph1)
.addWidget(cardSection1Divider1)
.addWidget(cardSection1TextParagraph2);
let card = CardService.newCardBuilder()
.addSection(cardSection1)
.build();
return card;
}
[[["Прост для понимания","easyToUnderstand","thumb-up"],["Помог мне решить мою проблему","solvedMyProblem","thumb-up"],["Другое","otherUp","thumb-up"]],[["Отсутствует нужная мне информация","missingTheInformationINeed","thumb-down"],["Слишком сложен/слишком много шагов","tooComplicatedTooManySteps","thumb-down"],["Устарел","outOfDate","thumb-down"],["Проблема с переводом текста","translationIssue","thumb-down"],["Проблемы образцов/кода","samplesCodeIssue","thumb-down"],["Другое","otherDown","thumb-down"]],["Последнее обновление: 2024-10-29 UTC."],[[["Horizontal dividers are visual elements used to separate content within an add-on card for better readability."],["Use the `newDivider()` method within the `CardService` class to create a divider element."],["Dividers can be added to card sections along with other widgets like text paragraphs."]]],[]]