Đối tượng phản hồi có thể được trả về từ một hàm gọi lại (ví dụ: trình xử lý phản hồi biểu mẫu) để thực hiện một hoặc nhiều thao tác trên ứng dụng. Một số tổ hợp hành động không được hỗ trợ.
// An action that opens a link const actionResponse = CardService.newActionResponseBuilder() .setOpenLink(CardService.newOpenLink().setUrl('https://www.google.com')) .build(); // An action that shows a notification. const notificationActionResponse = CardService.newActionResponseBuilder() .setNotification( CardService.newNotification().setText( 'Some info to display to user'), ) .build(); // An action that shows an additional card. It also sets a flag to indicate that // the original state data has changed. const cardBuilder = CardService.newCardBuilder(); // Build card ... const navigationActionResponse = CardService.newActionResponseBuilder() .setNavigation(CardService.newNavigation().pushCard( cardBuilder.build())) .setStateChanged(true) .build();
Phương thức
Phương thức | Loại dữ liệu trả về | Mô tả ngắn |
---|---|---|
print | String | In nội dung đại diện JSON của đối tượng này. |
Tài liệu chi tiết
print Json()
In nội dung đại diện JSON của đối tượng này. Lựa chọn này chỉ dùng để gỡ lỗi.
Cầu thủ trả bóng
String