7
1

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.

kintone JavaScriptカスタマイズで画面遷移が発生してもconsole.logを追いやすくする

Last updated at Posted at 2021-09-19

問題

kintoneの場合、画面遷移が発生する場合と発生しない場合があります。
例えば、レコードの編集をした場合は、画面遷移が発生しません。
この場合 app.record.edit.submit イベントなどは console.log() を使ったりしてデバッグすることはやりやすいです。
しかし、レコード作成においては、その後、レコード詳細画面に画面遷移が発生します。
この場合 app.record.create.submitapp.record.create.submit.succeed イベントなど、console.log()をつかってもあっという間にログが消えてしまう、という現象がおきます。

  • ログを出したいが、保存ボタンを押した後画面遷移が起こり console.log() の結果が一瞬しか表示されない
(function() {
  'use strict';
  kintone.events.on('app.record.create.submit', function(event) {
    console.log('レコードが作成されました。');
  });
})();

g2M3gEsGS8lb3esmlirk1632032393-1632032477.gif

解決方法

画面遷移をしてもConsoleタブの結果を残す方法があります。
個人設定_経費精算_-_レコードの再利用.png
個人設定_経費精算_-_レコードの再利用.png

上記の設定をすると、画面遷移してもログが残ります。
image.png

注意

今回はChromeを使用した場合です。他のブラウザを利用の方はそのブラウザのヘルプなどをご確認ください。

7
1
1

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
7
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?