As I know, in angular 1.x I can use $sce service to meet my requirment like this
myApp.filter(\'trustAsHTML\', [\'$sce\', function($sce){ return function(t
I got Same Problem buy I Request the decode HTML from Backend and them you can inject html to your page
// YOUR TS @Component({ selector: 'page', templateUrl: 'page.html' }) export class Page { inject:any; constructor( ) { } ionViewDidLoad() { this.inject='your HTML code' } }
// YOU HTML PAGE