Zoeken…


parameters

params Details
keuzeschakelaar tagnaam waarnaar u in de html verwijst naar uw component
template (templateUrl) een tekenreeks die staat voor html die wordt ingevoegd waar de tag <selector> bevindt. templateUrl is een pad naar een html-bestand met hetzelfde gedrag
pijpen een reeks pijpen die door deze component worden gebruikt.

Opmerkingen

SUPER BELANGRIJK!

HET UITSCHAKELEN VAN SANITISEREN VERLAAT U OP RISICO VAN XSS (Cross-Site Scripting) EN ANDERE AANVAL-VECTOREN. ZORG ERVOOR DAT U VERTROUWT WAT U 100% KRIJGT

Door pijpen te gebruiken, kunt u alleen attribuutwaarden als volgt wijzigen:

<tag [attribute]="expression or variable reference | pipeName">

u kunt pijpen niet op deze manier gebruiken:

<tag attribute="expression or variable reference | pipeName">

of op deze manier

<tag attribute={{expression or variable reference | pipeName}}

Bypassing Sanitizing met pijpen (voor hergebruik van code)

Project volgt de structuur van de Angular2 handleiding Snel here .

RootOfProject
|
+-- app
|   |-- app.component.ts
|   |-- main.ts
|   |-- pipeUser.component.ts
|   \-- sanitize.pipe.ts
|
|-- index.html
|-- main.html
|-- pipe.html

main.ts

import { bootstrap } from '@angular/platform-browser-dynamic';
import { AppComponent } from './app.component';

bootstrap(AppComponent);

Dit vindt het bestand index.html in de root van het project en bouwt daarop voort.

app.component.ts

import { Component } from '@angular/core';
import { PipeUserComponent } from './pipeUser.component';

@Component({
    selector: 'main-app',
    templateUrl: 'main.html',
    directives: [PipeUserComponent]
})

export class AppComponent { }

Dit is de component op het hoogste niveau die andere componenten groepeert die worden gebruikt.

pipeUser.component.ts

import { Component } from '@angular/core';
import { IgnoreSanitize } from "./sanitize.pipe";

@Component({
    selector: 'pipe-example',
    templateUrl: "pipe.html",
    pipes: [IgnoreSanitize]
})

export class PipeUserComponent{
    constructor () { }        
    unsafeValue: string = "unsafe/picUrl?id=";
    docNum: string;

    getUrl(input: string): any {
        if(input !== undefined) {
            return this.unsafeValue.concat(input);
            // returns : "unsafe/picUrl?id=input"
        } else {
            return "fallback/to/something";
        }
    }
}

Dit onderdeel geeft het aanzicht voor de pijp om mee te werken.

sanitize.pipe.ts

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

@Pipe({
    name: 'sanitaryPipe'
})
export class IgnoreSanitize implements PipeTransform {

   constructor(private sanitizer: DomSanitizationService){}

   transform(input: string) : any {
       return this.sanitizer.bypassSecurityTrustUrl(input);
   }

}

Dit is de logica die beschrijft wat de pijp opmaakt.

index.html

<head>
    Stuff goes here...
</head>
<body>
    <main-app> 
        main.html will load inside here.
    </main-app>
</body>

main.html

<othertags> 
</othertags>

<pipe-example>  
    pipe.html will load inside here.
</pipe-example>

<moretags>
</moretags>

pipe.html

<img [src]="getUrl('1234') | sanitaryPipe">
<embed [src]="getUrl() | sanitaryPipe">

Als u de HTML zou inspecteren terwijl de app actief is, ziet u dat deze er als volgt uitziet:

<head>
    Stuff goes here...
</head>

<body>

    <othertags> 
    </othertags>
    
    <img [src]="getUrl('1234') | sanitaryPipe">
    <embed [src]="getUrl() | sanitaryPipe">
    
    <moretags>
    </moretags>

</body>


Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow