Javascript typeof 抛出引用错误

Javascript typeof throws referenceerror

让我们开始吧。
我正在使用 typeof 检查变量 API 是否存在。 我了解到 typeof returns "undefined" 如果变量不存在。

function exitApplication() {
    let typeOfApi = typeof API;
    if (typeOfApi !== "undefined") {
        API.close(() => {
            strip.shutdown();
            ...
            ...
            ...
        });
    }
    else {
        console.log("Bye!");
        process.exit(0);
    }
}

如果我现在 运行 我的程序带有导致调用 exitApplication 的测试数据,当 API 尚未定义时我得到一个 ReferenceError:

    let typeOfApi = typeof API;
                    ^

ReferenceError: API is not defined

因为我使用的是 Webpack,所以我更改了输出文件并将 API 替换为任何其他未定义的内容,瞧,它起作用了,typeOfApi 是 "undefined"(我粘贴的代码是 Webpack 输出)。

API 是一个 const 值,我只在我的代码中使用 let 和 const。我读了一些关于时间死区的东西,但是 typeof 应该仍然 return "undefined" if a let variable is not defined?

我也读过这个 Why does typeof only sometimes throw ReferenceError? 但我没有使用表达式。

哦,我的代码是用打字稿写的。但我不是 "good" 并且真的不知道如何获取 restify 的类型,所以 APIany 类型。 (我知道 typeof 和 typescript 类型是完全不同的东西 :D)。但无论如何,代码似乎都是一对一翻译的。


编辑: 所以我做了这个小例子。这是 Webpack 输出

#!/usr/local/bin/node
/******/ (function(modules) { // webpackBootstrap
/******/    // The module cache
/******/    var installedModules = {};
/******/
/******/    // The require function
/******/    function __webpack_require__(moduleId) {
/******/
/******/        // Check if module is in cache
/******/        if(installedModules[moduleId]) {
/******/            return installedModules[moduleId].exports;
/******/        }
/******/        // Create a new module (and put it into the cache)
/******/        var module = installedModules[moduleId] = {
/******/            i: moduleId,
/******/            l: false,
/******/            exports: {}
/******/        };
/******/
/******/        // Execute the module function
/******/        modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/        // Flag the module as loaded
/******/        module.l = true;
/******/
/******/        // Return the exports of the module
/******/        return module.exports;
/******/    }
/******/
/******/
/******/    // expose the modules object (__webpack_modules__)
/******/    __webpack_require__.m = modules;
/******/
/******/    // expose the module cache
/******/    __webpack_require__.c = installedModules;
/******/
/******/    // define getter function for harmony exports
/******/    __webpack_require__.d = function(exports, name, getter) {
/******/        if(!__webpack_require__.o(exports, name)) {
/******/            Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/        }
/******/    };
/******/
/******/    // define __esModule on exports
/******/    __webpack_require__.r = function(exports) {
/******/        if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/            Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/        }
/******/        Object.defineProperty(exports, '__esModule', { value: true });
/******/    };
/******/
/******/    // create a fake namespace object
/******/    // mode & 1: value is a module id, require it
/******/    // mode & 2: merge all properties of value into the ns
/******/    // mode & 4: return value when already ns object
/******/    // mode & 8|1: behave like require
/******/    __webpack_require__.t = function(value, mode) {
/******/        if(mode & 1) value = __webpack_require__(value);
/******/        if(mode & 8) return value;
/******/        if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/        var ns = Object.create(null);
/******/        __webpack_require__.r(ns);
/******/        Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/        if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/        return ns;
/******/    };
/******/
/******/    // getDefaultExport function for compatibility with non-harmony modules
/******/    __webpack_require__.n = function(module) {
/******/        var getter = module && module.__esModule ?
/******/            function getDefault() { return module['default']; } :
/******/            function getModuleExports() { return module; };
/******/        __webpack_require__.d(getter, 'a', getter);
/******/        return getter;
/******/    };
/******/
/******/    // Object.prototype.hasOwnProperty.call
/******/    __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/    // __webpack_public_path__
/******/    __webpack_require__.p = "";
/******/
/******/
/******/    // Load entry module and return exports
/******/    return __webpack_require__(__webpack_require__.s = "./src/test.ts");
/******/ })
/************************************************************************/
/******/ ({

/***/ "./src/test.ts":
/*!*********************!*\
  !*** ./src/test.ts ***!
  \*********************/
/*! no static exports found */
/***/ (function(module, exports) {

exitApplication();
const API = {};
function exitApplication() {
    let typeOfApi = typeof API;
    console.log(typeOfApi);
    if (typeOfApi !== "undefined") {
        console.log("Bye!");
        process.exit(0);
    }
    else {
        console.log("Bye!");
        process.exit(0);
    }
}


/***/ })

/******/ });
//# sourceMappingURL=LED-Controller.js.map

这也会抛出引用错误

编辑:这是我的 TS 和 Webpack 配置。 https://gist.github.com/Lucarus/ebbfab5cc6560094a292ba86557ffd1d
例如,我将 Applications.ts 替换为 test.ts 但它使用相同的配置。

您正在调用一个函数,该函数在 const API = {} 变量初始化之前引用该变量,但在该变量将被声明的范围内。对于 constlet,这是不允许的。你有这个:

exitApplication();
const API = {};
function exitApplication() {
    let typeOfApi = typeof API;
    console.log(typeOfApi);
    if (typeOfApi !== "undefined") {
        console.log("Bye!");
        process.exit(0);
    }
    else {
        console.log("Bye!");
        process.exit(0);
    }
}

该函数被提升到该范围的顶部,因此您可以调用 exitApplication(),但您尚未执行初始化 API 的代码行。但是,解释器知道它在那里并且尚未初始化并且它是 Javascript 中的 ReferenceError 以尝试访问定义范围内的 constlet 定义的变量在它之前包含其声明的行 运行s.

当我在 Chrome 中 运行 时,我得到的确切错误是:

Uncaught ReferenceError: Cannot access 'API' before initialization

这会准确地告诉您问题出在哪里。在解释器的第一遍中,它已经解析了代码并且知道 const API = {} 在那里,所以在到达初始化它的那行代码之前访问它是非法的。如果您真的想解决这个问题,请将 const 更改为 var,但可能有更好的方法来编写不需要使用 var.[=27 的代码=]


当然,如果只是把API的声明往上移一行,没问题:

const API = {};
exitApplication();
function exitApplication() {
    let typeOfApi = typeof API;
    console.log(typeOfApi);
    if (typeOfApi !== "undefined") {
        console.log("Bye!");
        process.exit(0);
    }
    else {
        console.log("Bye!");
        process.exit(0);
    }
}

关于这个主题的好文章,你可以阅读这篇文章:Why typeof is no longer safe