gpt4 book ai didi

Angular2 错误 TS1146 : Declaration expected

转载 作者:行者123 更新时间:2023-12-03 15:14:05 27 4
gpt4 key购买 nike

Angular2 新手在这里。

我正在使用来自 Angular.io 的种子文件,但是当我运行“npm start”时,我收到了 tsc 编译器错误 -

tsc -p src/

src/app/app.module.ts(11,3): 错误 TS1146: 需要声明。

有人可以告诉我我缺少什么吗?我只有一个组件“AppComponent”。

app.module.ts:

import { NgModule }      from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';

@NgModule({
imports: [ BrowserModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }

app.component.ts
import { Component } from '@angular/core';

@Component({
selector: 'my-app',
template: `
<h1>Hello</h1>
`,
})

export class AppComponent {

}

和 index.html
<!DOCTYPE html>
<html>
<head>
<title>Angular QuickStart</title>
<base href="/">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">

<!-- Polyfill(s) for older browsers -->
<script src="node_modules/core-js/client/shim.min.js"></script>

<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>

<script src="systemjs.config.js"></script>
<script>
System.import('main.js').catch(function(err){ console.error(err); });
</script>
</head>

<body>
<my-app>Loading AppComponent content here ...</my-app>
</body>
</html>

最佳答案

我今天面临这个问题是因为我在 angualr 6 应用程序中犯了一个愚蠢的错误。我来自 C# 世界,我总是在每一行后使用分号 (;)。我在我的组件中做了同样的事情。

@Component({
selector: 'app-movies',
templateUrl: './movies.component.html',
styleUrls: ['./movies.component.css']
});

后来,这个 post促使我进行修复,即我需要删除@Component 之后的分号 (;)。
@Component({
selector: 'app-movies',
templateUrl: './movies.component.html',
styleUrls: ['./movies.component.css']
})

但我不确定,为什么我们会在这种情况下收到此错误,我希望有人能尽快解决此问题。

关于Angular2 错误 TS1146 : Declaration expected,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43618631/

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