对 Google 应用界面环境中显示的 prompt
对话框的响应。响应包含用户在对话框的输入字段中输入的任何文本,并指明用户点击了哪个按钮来关闭对话框。
// 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. const ui = DocumentApp.getUi(); const 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.'); }
方法
方法 | 返回类型 | 简介 |
---|---|---|
get | String | 获取用户在对话框的输入字段中输入的文本。 |
get | Button | 获取用户点击以关闭对话框的按钮。 |
详细文档
get Response Text()
获取用户在对话框的输入字段中输入的文本。即使用户通过点击具有负面含义的按钮(例如“取消”或对话框标题栏中的关闭按钮)关闭了对话框,系统也会显示该文本。get
有助于确定用户是否希望响应文本有效。
返回
String
- 用户在对话框的输入字段中输入的文本。