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>
答案 0 :(得分:3)
我今天遇到这个问题是因为我在我的第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']
})
但我不确定,为什么我们在这种情况下会出现此错误,希望有人能尽快解决此问题。
答案 1 :(得分:1)
除了你的模板后可能还有一个额外的逗号外,一切看起来都不错......
app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `
<h1>Hello</h1>
`
})
export class AppComponent {
}