0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AjaxでDB未接続時にエラーメッセージを出す方法

Last updated at Posted at 2021-08-31

DB接続時のエラーメッセージを出す方法として、onAjaxErrorを使用するやり方がある。
onAjaxErrorはページ内で発生したAjax通信が失敗した時に指定した関数を実行する。

例では、リストテーブルでAjax通信を行っている。
まず、リストテーブルにonAjaxErrorで実行する関数(この場合onAjaxError)を指定する。

list.html
<imart type="imuiListTable" id="listtable" process="jssp" target="unit_test/list" viewRecords="true"
onAjaxParameterExtend="onAjaxParameterExtend"  onAjaxError="onAjaxError" height="136">
...
</imart >

次に、onAjaxErrorで指定した関数で、エラーメッセージを出す。

list.html
//Ajax通信が失敗した際に呼び出される関数
	function onAjaxError() {
		//「データベースに接続できませんでした」とエラーメッセージを出力 
		imuiShowErrorMessage('データベースに接続できませんでした',[],true,0);
	}

やり方を知っていれば簡単な方法なので、知らない方はぜひ試してみてほしい。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?