带有HTML的AngularJS表达式正在添加引号?

带有HTML的AngularJS表达式正在添加引号?,angularjs,Angularjs,我尝试回显以下HTML表达式(从解码的jSON获得): 使用此选项: <ion-item-group *ngFor="let category of categories"><ion-item-divider color="light">{{category.name}}</ion-item-divider>{{category.links}}</ion-item-group> {{category.name}{{category.links

我尝试回显以下HTML表达式(从解码的jSON获得):


使用此选项:

<ion-item-group *ngFor="let category of categories"><ion-item-divider color="light">{{category.name}}</ion-item-divider>{{category.links}}</ion-item-group>
{{category.name}{{category.links}
但结果是:

<ion-item-group><ion-item-divider color="light">Women Clothes</ion-item-divider>&lt;ion-item&gt;&lt;a href="/category/latest-collection/women/dresses"&gt;Dresses&lt;/a&gt;&lt;/ion-item&gt;&lt;ion-item&gt;</ion-item-group>
女式服装项目a href=“/category/latest collection/Women/dresses”连衣裙/a/ion项目

有什么想法吗-(

如果要呈现包含html的字符串,可以使用
当我使用innerHTML时,它会删除
标记。。。
<ion-item-group><ion-item-divider color="light">Women Clothes</ion-item-divider>&lt;ion-item&gt;&lt;a href="/category/latest-collection/women/dresses"&gt;Dresses&lt;/a&gt;&lt;/ion-item&gt;&lt;ion-item&gt;</ion-item-group>