如果问题很简单,请原谅我。我刚刚开始学习Angular。 我正在尝试我的第一个应用。但它没有编译。因为它无法识别我的部分代码。 我想知道是否有人可以在这里给我一些关于我做错的提示?
app.component.html文件:
<!--The whole content below can be removed with the new code.-->
<div style="text-align:center">
<h1>
Welcome to {{pageTitle}}!!
</h1>
... Starter Files ...
</div>
app.component.ts文件
import { Component } from '@angular/core';
@Component({
selector: 'pm-root',
template: <div><h1>{{pageTitle}}</h1></div> // **this line of code created error**
})
export class AppComponent {
pageTitle: string = 'Angular: Getting Started';
}
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
的index.html
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Acme Product Management</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<pm-root></pm-root>
</body>
</html>
答案 0 :(得分:3)
您的模板中没有反引号或引号:
模板是ECMAScript 2015反引号中的多行字符串 (
). The backtick (
) - 与单个角色不同 quote(') - 允许你在几行上组成一个字符串 使HTML更具可读性。
import { Component } from '@angular/core';
@Component({
selector: 'pm-root',
template: `<div><h1>{{pageTitle}}</h1></div>` // **added backticks**
})
export class AppComponent {
pageTitle: string = 'Angular: Getting Started';
}