Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Everything is possible.
Method number one:
@Component({
templateUrl: 'your-smarty-template.php'
})
@Component({
template: '<div [innerHTML]="myHtml"></div>'
})
export class MyComponent implements OnInit {
myHtml?: SafeHtml;
constructor(private _http: Http, private _sanitizer: DomSanitizer) {
}
ngOnInit() {
this._http.get("your-smarty-template.php")
.subscribe(response =>
this.myHtml = this._sanitizer.bypassSecurityTrustHtml(response.text()));
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question