角度2を初めて使用しました。角度-rc-4バージョンを使用しています。角度2解析テンプレートエラー
角度2をブートストラップアイコンと組み合わせると、テンプレートを解析できません。
予期しない終了タグ "李は" あなたの助けの下
ため
おかげで私のコードです:
import { Component } from '@angular/core';
import { CourseService } from './course.service';
import { AutoGrowDirective } from './auto-grow.directive';
@Component({
selector: 'courses',
template: `
<h2>Courses</h2>
{{ title }}
<input autoGrow [(ngModel)]="title"/>
<input type="button" (click)="title = ''" value="Clear">
Preview
{{ title }}
<ul>
<li *ngFor="let course of courses">
<i class="glyphicon glyphicon-star" />
</li>
</ul>
<div (click)="onDivClick()">
<button class="btn btn-primary" [class.active]="isActive" (click)="onClick($event)">Create</button>
</div>
`,
providers: [CourseService],
directives: [AutoGrowDirective]
})
export class CoursesComponent {
title = 'The title of courses page';
courses: string[];
isActive = true;
constructor(courseService: CourseService) {
this.courses = courseService.getCourses();
}
onClick($event){
$event.stopPropagation();
console.log('Clicked', $event);
}
onDivClick($event){
console.log('On Div Clicked', $event);
}
}
は上のスポット。唯一の「自己閉鎖」タグ(正しくはボイド要素として知られている)は仕様通りです:https://www.w3.org/TR/html5/syntax.html#void-elements area、base、br、col – LDJ