我无法在没有错误的情况下导入模块

I can't import a module without errors

我的问题出在标题上。我写了一个 class 像这样:

export default class Vector3 {
  constructor(x, y, z) {
    this.x = x;
    this.y = y;
    this.z = z;
  }

  // object's functions
  magnitude() {
    return Math.sqrt(this.x ** 2 + this.y ** 2 + this.z ** 2);
  }

非常基础,我想在另一个中使用它:

import Vector3 from '../radiosity/vector3';

const v1 = new Vector3(1, 2, 3);

QUnit.test('magnitude()', function (assert) {
  const result = v1.magnitude();
  assert.equal(result, Math.sqrt(14), '|(1, 2, 3)| equals sqrt(14)');
});

但是当我 运行 我的 QUnit 测试时,它给了我这个:

`SyntaxError: Cannot use import statement outside a module
    at Module._compile (internal/modules/cjs/loader.js:892:18)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:973:10)
    at Module.load (internal/modules/cjs/loader.js:812:32)
    at Function.Module._load (internal/modules/cjs/loader.js:724:14)
    at Module.require (internal/modules/cjs/loader.js:849:19)
    at require (internal/modules/cjs/helpers.js:74:18)
    at run (/home/thomas/Code/GitKraken/Slow-light-Radiosity/node_modules/qunit/src/cli/run.js:55:4)
    at Object.<anonymous> (/home/thomas/Code/GitKraken/Slow-light-Radiosity/node_modules/qunit/bin/qunit.js:56:2)
    at Module._compile (internal/modules/cjs/loader.js:956:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:973:10)

我在网上看到这个错误很普遍,但我还没有找到解决办法。

所以如果有人能帮我弄清楚。

当 Node 理解 CommonJS 时,您正在导出 ES6 模块。

class Vector3 {
  constructor(x, y, z) {
    this.x = x;
    this.y = y;
    this.z = z;
  }

  magnitude() {
    return Math.sqrt(this.x ** 2 + this.y ** 2 + this.z ** 2);
  }
}

module.exports = Vector3;

然后您可以通过以下方式导入它:

const Vector3 = require('../radiosity/vector3')

附加信息