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 moduleの一部です。


基本的な使い方

action()はグローバルに利用できます。アプリ上のどこからでも呼び出すことが可能です。

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