gpt4 book ai didi

javascript - Typescript:无法在构造函数中使用 : 符号编译文件

转载 作者:行者123 更新时间:2023-11-27 23:17:53 26 4
gpt4 key购买 nike

我正在关注 Ionic(带有 Angular 2)应用程序的一些示例。所有类的构造函数都有类似的内容:

export class UserService {
constructor(http: Http) {
this.http = http;
}
}

但编译器输出此错误:

Unexpected token (14:17)
12 | }
13 |
> 14 | constructor(http: Http)
at Parser.pp.raise (/home/cbenseler/dev/apps/expressoapp/node_modules/babylon/index.js:1425:13)

这可能是我的应用程序(使用 babel 和 webpack)的设置有问题,但我找不到问题所在。

webpack.config.js 文件包含以下内容:

module: {
loaders: [
{
test: /\.js$/,
loader: 'babel',
query: {
presets: ['es2015'],
plugins: ['transform-decorators-legacy']
},
include: path.resolve('app'),
exclude: /node_modules/
},
{
test: /\.js$/,
include: path.resolve('node_modules/angular2'),
loader: 'strip-sourcemap'
}
],
noParse: [
/es6-shim/,
/reflect-metadata/,
/zone\.js(\/|\\)dist(\/|\\)zone-microtask/
]
}

有人有什么想法吗?

最佳答案

我会看到一件可能会错过的事情:

  • 您忘记导入 Http 类,因此编译器无法解析它:

    import {Http} from 'angular2/http';

编辑

如果你只使用ES6(似乎是这样),你可以在参数级别使用type。在这种情况下注入(inject),你需要使用这样的方法:

@Injectable()
export class UserService {
constructor(http) {
this.http = http;
}

static get parameters() {
return [[Http]];
}
}

请参阅以下链接了解更多详细信息:

关于javascript - Typescript:无法在构造函数中使用 : 符号编译文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35657491/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com