ActionDialog

This is an overview of the most common usage of ActionDialog. For more information about the available properties, methods, or events, head over to the complete API documentation for ActionDialog.

action() 方法显示可选选项列表和取消按钮。使用它让用户在选项之间进行选择或关闭选择。

该方法是该 dialogs 模块的一部分。


基本用途

action() 方法可在全局范围内使用。您可以在应用中的任何位置调用它。

action("Your message", "Cancel button text", ["Option1", "Option2"])
  .then(result => {
    console.log(result);
  });
Contributors