繁体   English   中英

Nodejs/Typescript 错误:SyntaxError:意外令牌:

[英]Nodejs/Typescript error: SyntaxError: Unexpected token :

我在名为 spartan.ts 的单独文件中定义了一个类,它是这样的:

class Spartan {
    name: string;
    constructor(name: string) {
        this.name = name;
    }
    test() {
        return this.name;
    }
}

module.exports = Spartan;

然后我将其导入其他文件,如下所示:

var Spartan = require("../entities/spartan.ts");
var mySpartan = new Spartan("myName");
console.log(mySpartan.test())

我的 tsconfing.json 看起来像这样:

{
  "compileOnSave": false,
  "compilerOptions": {
    "baseUrl": "./",
    "outDir": "./dist/out-tsc",
    "sourceMap": true,
    "declaration": false,
    "module": "es2015",
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "target": "es5",
    "typeRoots": [
      "node_modules/@types"
    ],
    "lib": [
      "es2017",
      "dom"
    ]
  }
}

然后我得到这个错误:

SyntaxError: Unexpected token :
        at createScript (vm.js:80:10)
        at Object.runInThisContext (vm.js:139:10)
        at Module._compile (module.js:616:28)
        at Object.Module._extensions..js (module.js:663:10)
        at Module.load (module.js:565:32)
        at tryModuleLoad (module.js:505:12)
        at Function.Module._load (module.js:497:3)
        at Module.require (module.js:596:17)
        at require (internal/module.js:11:18)
        at Object.<anonymous> (/U.../routeRepository.ts:2:15)

您可能应该使用 ES2015 模块语法进行导入/导出,例如:

export class Spartan {
    name: string;
    constructor(name: string) {
        this.name = name;
    }
    test() {
        return this.name;
    }
  }

进而:

import { Spartan } from "../entities/spartan.ts";
let mySpartan = new Spartan("myName");
console.log(mySpartan.test())

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM