JavaScript 错误:“不是函数”

新手上路,请多包涵

看起来“$smth 不是函数”是 JavaScript 的一个非常常见的问题,但是在查看了很多线程之后,我仍然无法理解是什么导致了我的情况。

我有一个自定义对象,定义为:

function Scorm_API_12() {
var Initialized = false;

function LMSInitialize(param) {
    errorCode = "0";
    if (param == "") {
        if (!Initialized) {
            Initialized = true;
            errorCode = "0";
            return "true";
        } else {
            errorCode = "101";
        }
    } else {
        errorCode = "201";
    }
    return "false";
}

// some more functions, omitted.
}

var API = new Scorm_API_12();

然后在另一个脚本中,我尝试通过以下方式使用此 API:

var API = null;

function ScormProcessInitialize(){
    var result;

    API = getAPI();

    if (API == null){
        alert("ERROR - Could not establish a connection with the API.");
        return;
    }

    // and here the dreaded error pops up
    result = API.LMSInitialize("");

    // more code, omitted
    initialized = true;
}

getAPI() 的东西,看起来像这样:

var findAPITries = 0;

function findAPI(win)
{
   // Check to see if the window (win) contains the API
   // if the window (win) does not contain the API and
   // the window (win) has a parent window and the parent window
   // is not the same as the window (win)
   while ( (win.API == null) &&
           (win.parent != null) &&
           (win.parent != win) )
   {
      // increment the number of findAPITries
      findAPITries++;

      // Note: 7 is an arbitrary number, but should be more than sufficient
      if (findAPITries > 7)
      {
         alert("Error finding API -- too deeply nested.");
         return null;
      }

      // set the variable that represents the window being
      // being searched to be the parent of the current window
      // then search for the API again
      win = win.parent;
   }
   return win.API;
}

function getAPI()
{
   // start by looking for the API in the current window
   var theAPI = findAPI(window);

   // if the API is null (could not be found in the current window)
   // and the current window has an opener window
   if ( (theAPI == null) &&
        (window.opener != null) &&
        (typeof(window.opener) != "undefined") )
   {
      // try to find the API in the current window�s opener
      theAPI = findAPI(window.opener);
   }
   // if the API has not been found
   if (theAPI == null)
   {
      // Alert the user that the API Adapter could not be found
      alert("Unable to find an API adapter");
   }
   return theAPI;
}

现在,API 可能 已找到,因为我没有收到“无法找到…”消息,代码继续尝试初始化它。但是萤火虫告诉我 API.LMSInitialize is not a function ,如果我尝试使用 alert(Object.getOwnPropertyNames(API)); ,它给了我一个空白警报。

我错过了什么?

原文由 SaltyNuts 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 657
2 个回答

您的 LMSInitialize 函数在 Scorm_API_12 函数中声明。所以它只能在 Scorm_API_12 函数的范围内看到。

如果您想使用 API.LMSInitialize("") 之类的函数,请像这样声明 Scorm_API_12 函数:

 function Scorm_API_12() {
 var Initialized = false;

 this.LMSInitialize = function(param) {
 errorCode = "0";
 if (param == "") {
 if (!Initialized) {
 Initialized = true;
 errorCode = "0";
 return "true";
 } else {
 errorCode = "101";
 }
 } else {
 errorCode = "201";
 }
 return "false";
 }

 // some more functions, omitted.
 }

 var API = new Scorm_API_12();

原文由 Just_Mad 发布,翻译遵循 CC BY-SA 3.0 许可协议

有关调试此类问题的更多 通用 建议,MDN 有一篇很好的文章 TypeError: “x” is not a function

试图像函数一样调用值,但该值实际上不是函数。一些代码希望您提供一个函数,但那并没有发生。

也许函数名称中有错字?也许你正在调用方法的对象没有这个功能?例如,JavaScript 对象没有 map 函数,但 JavaScript Array 对象有。

基本上对象(js中的所有函数也是对象)并不存在于你认为它存在的地方。这可能有 多种 原因, 包括(不是一个广泛的列表):

  • 缺少脚本库
  • 错别字
  • 该功能在您当前无权访问的范围内,例如:
 var x = function(){
   var y = function() {
      alert('fired y');
   }
};

//the global scope can't access y because it is closed over in x and not exposed
//y is not a function err triggered
x.y();
  • 您的对象/函数没有您调用的函数:
 var x = function(){
   var y = function() {
      alert('fired y');
   }
};

//z is not a function error (as above) triggered
x.z();

原文由 Liam 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题