如何制作结构指令来包装部分DOM?

时间:2018-01-29 10:38:24

标签: html angular dom angular-directive angular5

我目前在HTML中有以下行:

<p> this is my first line </p>

使用包装器指令我想添加第二段并将其包装在div中,所以它看起来像这样:

<p wrapper> this is my first line </p>

然后该指令将添加包装器和第二行以使最终的HTML看起来像这样:

<div>
    <p> this is my first line </p>
    <p> this is my second </p>
</div>

根据我对angular.io的理解,我需要创建一个结构指令并使用TemplateRef和ViewContainerRef,但我找不到一个如何使用它们来包装现有部分的例子。 dom并添加第二行。

我在这个项目中使用了Angular 5.

2 个答案:

答案 0 :(得分:2)

我这样做了指令:

import { Directive, ElementRef, Renderer2, OnInit } from '@angular/core';

@Directive({
    selector: '[wrapper]'
})
export class WrapperDirective implements OnInit {

    constructor(
        private elementRef: ElementRef,
        private renderer: Renderer2) {
        console.log(this);
    }

    ngOnInit(): void {
        //this creates the wrapping div
        const div = this.renderer.createElement('div');

        //this creates the second line
        const line2 = this.renderer.createElement('p');
        const text = this.renderer.createText('this is my second');
        this.renderer.appendChild(line2, text);

        const el = this.elementRef.nativeElement; //this is the element to wrap
        const parent = el.parentNode; //this is the parent containing el
        this.renderer.insertBefore(parent, div, el); //here we place div before el

        this.renderer.appendChild(div, el); //here we place el in div
        this.renderer.appendChild(div, line2); //here we append the second line in div, after el
    }
}

答案 1 :(得分:0)

templateRef具有名为“elementRef”的属性,你可以抛出它访问本机dom,如下所示:

this.templateRef.elementRef.nativeElement

因此,您可以像上面一样访问您的元素,并使用由angular提供的内置Renderer类。

请查看以下链接

https://angular.io/api/core/Renderer2