Angular4|Angular4 innerHtml呈现富文本内容样式
import { Pipe, PipeTransform } from "@angular/core"; import { DomSanitizer } from '@angular/platform-browser'; // https://angular.io/guide/security @Pipe({ name: 'safeHtml' }) export class SafeHtmlPipe implements PipeTransform { constructor(private sanitized: DomSanitizer) { } transform(value) { return this.sanitized.bypassSecurityTrustHtml(value); } }
在app.module.ts配置
import { NgModule } from '@angular/core' import { SafeHtmlPipe } from '../safe-html.pipe'; import { AppComponent } from './app.component'@NgModule({ declarations: [AppComponent, SafeHtmlPipe], imports: [] }) export class AppModule {}
在app.component.html
【Angular4|Angular4 innerHtml呈现富文本内容样式】
转载于:https://www.cnblogs.com/dawnwill/p/11046332.html
推荐阅读
- 10年后,MOOC能为我们呈现一个怎样的教育未来()
- 春天多美好!
- 数据呈现—ListView|数据呈现—ListView x Adapter
- angular4+rxjs订阅发布者模式实现组件中通信
- 纠结火锅去哪吃,用Python可视化做个数据呈现决定吧(附学习资源)
- angular4 +node+express 的搭建
- .odex文件的反编译
- web|web 页面请求分析
- 呈现最美季节,2018上半年婚礼主打花攻略
- angular4.0中路由传递参数、获取参数