我最近更新到VSCode 1.6.1,它从Typescript 1.8.10切换到2.0.3,这使我的项目停止工作。
Reflect方法已经改变,所以现在路由控制器在尝试获取方法属性时抛出以下错误:
TypeError: Reflect.getMetadata is not a function
at exports.Body (C:\FN\FantasyNation\Stormbringer\node_modules\routing-contr
ollers\decorator\params.js:155:30)
at __param (C:\FN\FantasyNation\Stormbringer\Scripts\controllers\UserControl
ler.js:12:37)
at __decorate (C:\FN\FantasyNation\Stormbringer\Scripts\controllers\UserCont
roller.js:5:110)
at Object.<anonymous> (C:\FN\FantasyNation\Stormbringer\Scripts\controllers\
UserController.js:56:1)
按照发行说明中的说明切换回我工作区中的特定版本,我在工作区中安装了旧的打字稿:
npm install typescript@1.8.10
重新打开VSCode时没有问我要使用的TS版本,所以我手动更新了我的工作区“settings.json”来指定它:
{
"files.exclude": {
"**/*.js.map": true,
"**/*.js": {"when": "$(basename).ts"}
},
"editor.stablePeek": true,
"typescript.tsdk": "node_modules/typescript/lib"
}
当我打开“.ts”文件时,VSCode会显示正确的版本:
但是在重建(ctrl + shift + B)并再次运行它(F5)后,我仍然得到完全相同的错误。
我的tsconfig是:
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"noImplicitAny": false,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"inlineSourceMap": true,
"watch": false
},
"exclude": [
"node_modules"
]
}
我的启动设置是:
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/app.js",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"externalConsole": true,
"sourceMaps": true,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5959
}
]
}
我错过了什么吗?
答案 0 :(得分:0)
嗯,这是一个合并,搞砸了代码并移动了导入订单。
import 'reflect-metadata';
应该是第一个让路由控制器正常工作的导入