学习使用 express server,于是建立 了一个新项目 package.json
{
"name": "@my/server",
"version": "1.0.0",
"scripts": {
"server": "node src/express-server.js"
},
"dependencies": {
"express": "^4.17.1",
"lodash": "^4.17.15"
}
}
然后新建立了一个 baseDB.js (是一个 js 文件,不是 ts 文件)
class baseDB {
constructor() {
this.items = [];
}
load() {
// will be implemented in the sub-class
console.log("will be implemented in the sub-class");
}
aync save() {
console.log("will be implemented in the sub-class");
}
}
然后有关键字aync
的那一行,就提示有错误。';' expected.ts(1005)
大家有没有碰到类似的问题?谢谢!
p.s. https://github.com/microsoft/vscode/issues/54261
VSCode github 上面曾经有类似的问题,2018 年报的,可惜,那个帖子不了了之了......
1
xg4 2020-05-04 16:07:16 +08:00 1
async,不是 aync
|
2
rbe 2020-05-04 16:09:02 +08:00
typescript.validate.enable 设为 false
|
4
noe132 2020-05-04 16:26:08 +08:00
async.
|
6
chengxy 2020-05-04 17:37:39 +08:00
完了,删不掉了
|
7
yuang 2020-05-04 21:11:20 +08:00 via Android 1
推荐 spell checker 这个 VScode 插件,用于检查拼写错误
|
8
xieranmaya 2020-05-05 09:47:13 +08:00
vscode 会自动对 js 执行 ts 的语法及类型检查
|
9
ChineseCabbage 2020-05-06 11:15:28 +08:00
@chengxy 哈哈哈哈 这个心理跟我一模一样
|