我无法在浏览器中获得单独的星形图标。这就是我所做的:
我在app.component.ts
post = {
valu:true
}
我将以下代码放在我创建的组件中,即star.component.html
<span
class ="glyphicon"
[class.glyphicon-star]="valu"
[class.glyphicon-star-empty]="!valu"
(click)="onclick()"
class="glyphicon glyphicon-globe"
>
</span>
app.component.html
<app-star
[valu]="post.valu"
>
</app-star>
在star.component.ts
@Input() valu:boolean;
P.S。我已经安装了bootstrap