我需要渲染按钮,但它不起作用 我用离子2
home.ts
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage {
content:string ='<button ion-button color="light">Light</button>';
constructor(public navCtrl: NavController) {
}
}
home.html的
<ion-content>
<ion-card>
{{content}}
</ion-card>
</ion-content>
答案 0 :(得分:1)
将代码更改为<ion-card [innerHtml]="content"></ion-card>
{{content}}
只会将值打印为字符串。但innerHtml
实际上会使用原始html数据