我正在使用Node v10.11.0,并且正在从Ubuntu 18.04运行此脚本。

我的文件设置如下所示:

main.js

import Login from './Login.mjs';

class Main {
    constructor() {
        const login = new Login();

        login.login();
    }
}

new Main();

Login.mjs
import readline from 'readline';

class Login {
    constructor() {
        this.username = '';
        this.password = '';
        this.readline = readline.createInterface({
            input: process.stdin,
            output: process.stdout
        });
    }

    login() {
        this.readline.question('What is your username?', answer => {
            this.username = answer;
        });

        this.readline.question('What is your password?', answer => {
            this.password = answer;
        });
    }
}

export default Login;

我正在使用以下命令调用main.js:
node --experimental-modules main.js

这导致以下错误:
(node:7280) ExperimentalWarning: The ESM module loader is experimental.
/home/jrenk/Workspace/bitefight/main.js:1
(function (exports, require, module, __filename, __dirname) { import Login from './Login.mjs';
                                                                 ^^^^^

SyntaxError: Unexpected identifier
    at new Script (vm.js:79:7)
    at createScript (vm.js:251:10)
    at Proxy.runInThisContext (vm.js:303:10)
    at Module._compile (internal/modules/cjs/loader.js:657:28)
    at Object.Module._extensions..js
    (internal/modules/cjs/loader.js:700:10)
    at Module.load (internal/modules/cjs/loader.js:599:32)
    at tryModuleLoad (internal/modules/cjs/loader.js:538:12)
    at Function.Module._load (internal/modules/cjs/loader.js:530:3)
    at createDynamicModule (internal/modules/esm/translators.js:56:15)
    at setExecutor
    (internal/modules/esm/create_dynamic_module.js:50:23)
^^^^^属于Login,但我似乎无法在问题中将其格式化。

我还尝试将Login.mjs保存为Login.js,并在不使用main.js的情况下调用--experimental-modules,但这会导致完全相同的错误。

这个问题与this question.类似。如上所述,我已经尝试过那里描述的内容,但是没有运气。

最佳答案

native ES模块(importexport语句)只能在Node中的.mjs文件中使用。为了使用它们,入口点应该命名为main.mjs

为了在.js文件中使用ES模块,应将ES模块转换为回落到require,或与custom ES module loader一起使用。由于后者不是Node.js的 native 行为,因此建议不要凭经验推荐它。

关于javascript - 将JavaScript类导入另一个类时出现意外标识符{classname},我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52677626/

10-10 00:46