摘要:實現組件位置交換中視圖是和數據綁定的,它并不推薦我們直接操作元素,而且推薦我們通過操作數據的方式來改變組件視圖。首先定義兩個組件按鈕我們在下面的代碼中,動態創建以上兩個組件,并實現位置交換功能。
ngContentOutlet指令介紹
ngContentOutlet指令與ngTemplateOutlet指令類似,都用于動態組件,不同的是,前者傳入的是一個Component,后者傳入的是一個TemplateRef。
首先看一下使用:
其中MyComponent是我們自定義的組件,該指令會自動創建組件工廠,并在ng-container中創建視圖。
實現組件位置交換angular中視圖是和數據綁定的,它并不推薦我們直接操作HTML DOM元素,而且推薦我們通過操作數據的方式來改變組件視圖。
首先定義兩個組件:button.component.ts
import { Component, OnInit } from "@angular/core"; @Component({ selector: "app-button", template: ``, styleUrls: ["./button.component.css"] }) export class ButtonComponent implements OnInit { constructor() { } ngOnInit() { } }
text.component.ts
import { Component, OnInit, Input } from "@angular/core"; @Component({ selector: "app-text", template: ` `, styleUrls: ["./text.component.css"] }) export class TextComponent implements OnInit { @Input() public textName = "null"; constructor() { } ngOnInit() { } }
我們在下面的代碼中,動態創建以上兩個組件,并實現位置交換功能。
動態創建組件,并實現位置交換我們先創建一個數組,用于存放上文創建的兩個組件ButtonComponent和TextComponent,位置交換時,只需要調換組件在數組中的位置即可,代碼如下:
import { TextComponent } from "./text/text.component"; import { ButtonComponent } from "./button/button.component"; import { Component } from "@angular/core"; @Component({ selector: "app-root", template: `
`, styleUrls: ["./app.component.css"] }) export class AppComponent { public componentArr = [TextComponent, ButtonComponent]; constructor() { } public swap() { const temp = this.componentArr[0]; this.componentArr[0] = this.componentArr[1]; this.componentArr[1] = temp; } }
執行命令npm start在瀏覽器中可以看到如下效果:
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/98906.html
摘要:實現組件位置交換中視圖是和數據綁定的,它并不推薦我們直接操作元素,而且推薦我們通過操作數據的方式來改變組件視圖。首先定義兩個組件按鈕我們在下面的代碼中,動態創建以上兩個組件,并實現位置交換功能。 這篇文章主要介紹了angular6 利用 ngContentOutlet 實現組件位置交換(重排),小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧 ngConten...
摘要:實現組件位置交換中視圖是和數據綁定的,它并不推薦我們直接操作元素,而且推薦我們通過操作數據的方式來改變組件視圖。首先定義兩個組件按鈕我們在下面的代碼中,動態創建以上兩個組件,并實現位置交換功能。 這篇文章主要介紹了angular6 利用 ngContentOutlet 實現組件位置交換(重排),小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧 ngConten...
摘要:在使用進行開發的時候通過屬性綁定向組件內部傳值的方式有時候并不能完全滿足需求比如我們寫了一個公共組件但是某個模板使用這個公共組件的時候需要在其內部添加一些標簽內容這種情況下除了使用預先在組件內部定義之外就可以利用指令向組件傳入內容指令類似于 在使用angular進行開發的時候,通過屬性綁定向組件內部傳值的方式,有時候并不能完全滿足需求,比如我們寫了一個公共組件,但是某個模板使用這個公共...
閱讀 5080·2023-04-25 19:30
閱讀 2173·2023-04-25 15:09
閱讀 2618·2021-11-16 11:45
閱讀 2171·2021-11-15 18:07
閱讀 1458·2021-11-11 17:22
閱讀 2115·2021-11-04 16:06
閱讀 3576·2021-10-20 13:47
閱讀 3036·2021-09-22 16:03