Class PromptResponse

PromptResponse

屏幕上显示prompt对话框的响应 Google 应用的用户界面环境。响应包含用户输入的任何文本 对话框的输入字段,并指示用户点击了哪个按钮关闭对话框。

// Display a dialog box with a title, message, input field, and "Yes" and "No" buttons. The
// user can also close the dialog by clicking the close button in its title bar.
var ui = DocumentApp.getUi();
var response = ui.prompt('Getting to know you', 'May I know your name?', ui.ButtonSet.YES_NO);

// Process the user's response.
if (response.getSelectedButton() == ui.Button.YES) {
  Logger.log('The user\'s name is %s.', response.getResponseText());
} else if (response.getSelectedButton() == ui.Button.NO) {
  Logger.log('The user didn\'t want to provide a name.');
} else {
  Logger.log('The user clicked the close button in the dialog\'s title bar.');
}

方法

方法返回类型简介
getResponseText()String获取用户在对话框的输入字段中输入的文本。
getSelectedButton()Button获取用户点击以关闭对话框的按钮。

详细文档

getResponseText()

获取用户在对话框的输入字段中输入的文本。即使 用户通过点击带负面含义(例如“取消”)的按钮关闭了对话框或 对话框标题栏中的“关闭”按钮。getSelectedButton()可帮助确定 用户预期响应文本是否有效。

返回

String - 用户在对话框的输入字段中输入的文本。


getSelectedButton()

获取用户点击以关闭对话框的按钮。如果用户点击关闭按钮 按钮,此方法会返回 Button.CLOSE

返回

Button - 用户点击的按钮。