javascript 関数の呼び出し元の関数の名前を取得する

javascript 関数の呼び出し元の関数の名前を取得する

javascriptで2020年の段階で非推奨になってるcaller.nameを使用して、関数の呼び出し元の関数の名前を取得するサンプルコードを記述してます。

環境

  • OS windows10 pro 64bit
  • Apache 2.4.43
  • ブラウザ chrome 102.0.5005.63

caller.name使い方

caller.nameを使うと、関数の呼び出し元の関数の名前を取得することができます。

呼び出される関数名.caller.name

実際に、hoge関数からfoo関数を呼び出して、名前を取得してみます。

function hoge() {
    foo();
}

function foo() {
    // 呼び出し元の関数を表示
    console.log( foo.caller.name )
}

hoge() // hoge

「caller」は非推奨なため、「use strict」モードの場合はエラーとなります。

function hoge() {
    foo();
}

function foo() {
    'use strict';
    // 呼び出し元の関数を表示
    console.log( foo.caller.name )
}

hoge()
// Uncaught TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them

サンプルコード

以下は、それぞれのボタンをクリックして、fooという名称の関数の呼び出した関数を表示するサンプルコードとなります。

※cssには「bootstrap material」を使用してます。

<!DOCTYPE html>
<html lang="ja">

<head>
  <meta charset="utf-8">
  <title>mebeeサンプル</title>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">
  <link rel="stylesheet"
    href="https://unpkg.com/bootstrap-material-design@4.1.1/dist/css/bootstrap-material-design.min.css"
    integrity="sha384-wXznGJNEXNG1NFsbm0ugrLFMQPWswR3lds2VeinahP8N0zJw9VWSopbjv2x7WCvX" crossorigin="anonymous">
</head>
<style>
  .main {
    margin: 0 auto;
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
  }
</style>
<script>

  function hoge() {

    foo();

  }

  function foo() {
    // 呼び出し元の関数を表示
    document.getElementById("result").textContent = foo.caller.name
  }

</script>

<body>
  <div class="main">

    <div id="result" class="alert alert-primary" role="alert">
      呼び出した関数名
    </div>

    <button type="button" class="btn btn-raised btn-primary" onclick="hoge()">関数内でfoo実行</button>
    <button type="button" class="btn btn-raised btn-success" onclick="foo()">onclickでfoo実行</button>

  </div>
</body>

</html>

呼び出し元の関数名が表示されていることが確認できます。