AlertDialog

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

alert()はメッセージとOKボタンを表示するメソッドです。ユーザーからの反応が必要ない情報を見せる時に使います。

このメソッドはdialogs moduleの一部です。


基本的な使い方

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

alert('Your message')
  .then(() => {
    console.log("Alert dialog closed.");
  });

ダイアログのオプションを設定する。

alert({
  title: "Your title",
  message: "Your message",
  okButtonText: "Your OK button text"
}).then(() => {
  console.log("Alert dialog closed");
});
Contributors