“Styl wewnętrzny kątowy” Kod odpowiedzi

Styl innerhtml kątowy nie działa

import { DomSanitizer } from '@angular/platform-browser'
import { PipeTransform, Pipe } from "@angular/core";

@Pipe({ name: 'safeHtml'})
export class SafeHtmlPipe implements PipeTransform  {
  constructor(private sanitized: DomSanitizer) {}
  transform(value) {
    return this.sanitized.bypassSecurityTrustHtml(value);
  }
}

...

<div [innerHtml]="html | safeHtml"></div>
GutoTrosla

Styl wewnętrzny kątowy

import { ViewEncapsulation } from '@angular/core'

encapsulation: ViewEncapsulation.None
JulesG10

Odpowiedzi podobne do “Styl wewnętrzny kątowy”

Pytania podobne do “Styl wewnętrzny kątowy”

Więcej pokrewnych odpowiedzi na “Styl wewnętrzny kątowy” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu