我正在阅读this。
我下载了https://angular.io/guide/template-syntax#template-syntax
值得注意的点
在app.component.html
<h3>
{{title}}
<img src="{{heroImageUrl}}" style="height:30px">
</h3>
在app.component.ts
heroImageUrl = 'assets/images/hero.png';
然后运行
npm i @angular/cli
npm i
npm start
转到https://angular.io/generated/zips/template-syntax/template-syntax.zip
如何解决?